View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
imelda1ab imelda1ab is offline
external usenet poster
 
Posts: 11
Default Macro or VBA to Bold first 3 characters of a cell in the entirecolumn

My macro to bold the first three characters of a cell works great but
I am struggling with enhancing the macro to automatically repeat for
the entire column "C" instead of running it cell by cell. Ideally,
the macro would run on open, but I'll settle for running it on
command.

Any help is greatly appreciated!

Dim StartChar As Integer
Dim BoldLen As Integer
StartChar = 3
BoldLen = 5
ActiveCell.Characters(StartChar, BoldLen).Font.Bold = True