View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default offset to column A current row

Do you mean so that the colouring only starts at a cell with a value?

Can you give an example?

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



wrote in message
...
any ideas how i can do this? I have the following macro to highlight a
series of cells, but for it to work correctly, the first step needs to
be to select the first cell in the current row.

thanks


ActiveCell.Offset(0, 0).Range("A1:M1").Select
Selection.Interior.ColorIndex = 15
ActiveCell.Offset(1, 0).Range("A1").Select