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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top