PDA

View Full Version : Solved: Using Bold with .Cells Object?



Saladsamurai
10-23-2009, 04:46 AM
Is there any way to do this?

.Cells(1, 1).Bold ? (<--That doesn't work obviously)

I have a module already written using .Cells (not Range) and there are ceratin cells that I would like to make bold as they are written.

Thanks :)

p45cal
10-23-2009, 05:08 AM
.Cells(1, 1).Font.Bold = True

Saladsamurai
10-23-2009, 05:36 AM
Sweet! Thanks!!