View Single Post
  #7   Report Post  
Richie Rich Richie Rich is offline
Junior Member
 
Posts: 1
Cool

Quote:
Originally Posted by Roger Govier[_3_] View Post
Hi

You would need some VBA code to do this.
The following code needs to be copied into a standard module in your
Workbook.

[snip]

row = 10 '<--- set to row number for start
colno = 5 '<--- set to column number to use
lastrow = Cells(Rows.Count, colno).End(xlUp).row
For n = row To lastrow
Cells(row, colno).Select

[/snip]




"Tired of poor table nagivation"
. com wrote in message
...
I want to change from a large font size of the first word in a cell to a
smaller font size for the remainder of words, for cel text that is built
up
multiple text cells via a formula. This type of formatting is quite easy
for
a text (not formula) cell (just select the portion of text you want
different
and change font, size, color, etc.). However, I haven't been able to find
the set of operators/modifiers to accomplish the same thing within a
formula.

Please help. Thanks
That should read Cells(n, colno).Select

-- it was only applying the formatting on the first row, instead of the
entire column.

-Richie