bold text [message #14790] |
Mon, 29 March 1999 00:00  |
Clif
Messages: 1 Registered: March 1999
|
Junior Member |
|
|
I use an IDL program to output a file that lists data. I use Excel to
view them. I would like to format column & row headings, made under
PRINTF statements within the program, to BOLD text but cannot. Any help
is appreciated.
Thanks,
Clif
|
|
|
Re: bold text [message #14927 is a reply to message #14790] |
Tue, 30 March 1999 00:00  |
Liam Gumley
Messages: 473 Registered: November 1994
|
Senior Member |
|
|
Clif wrote:
> I use an IDL program to output a file that lists data. I use Excel to
> view them. I would like to format column & row headings, made under
> PRINTF statements within the program, to BOLD text but cannot. Any help
> is appreciated.
Clif,
If you mean uppercase text, the STRUPCASE function does what you need,
e.g.
title = 'Heading'
print, strupcase( title )
Cheers,
Liam.
---
Liam E. Gumley
Space Science and Engineering Center, UW-Madison
http://cimss.ssec.wisc.edu/~gumley
|
|
|