View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
L Scholes L Scholes is offline
external usenet poster
 
Posts: 54
Default format text in cell

I used this code in both a module and the code for Sheet1 and it
doesn't seem to have any effect.??? (When I get this sheet working I
will change the references as appropriate.)

Sub AAA()
For Each Cell In Range("C5:C59,D5:D59")
With Cell.Characters(Len(Cell.Value) - 1, 2).Font
.Superscript = True
.Underline = True
End With
Next
End Sub