set fontsize, etc

C

ChuckM

How would I set the font size, bold and underline for the contents of
the cell that is in row 'rw' and column 'col'

thanks
chuckm
 
A

Amy

Select the spot first - in VB it looks like this:

Range("colrw").Select
Selection.Font.Bold = True
Selection.Font.Italic = True
Selection.Font.Underline = xlUnderlineStyleSingle
 
Top