View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
arno arno is offline
external usenet poster
 
Posts: 184
Default Formatting text in a a cell with selecting it.

Hi,

Comrng.Offset(-1, 0).Select
Selection.Font.Bold

That is, I do not want to select it.


well, then just don't select it...

Comrng.Offset(-1, 0).Font.Bold

When you're manipulating an object you do not have to select it, this
happens only in the macro recorder because you do it with the mouse.

arno