set fontsize, etc

  • Thread starter Thread starter ChuckM
  • Start date Start date
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
 
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
 
Back
Top