offset to column A current row

B

barrynichols

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
 
B

Bob Phillips

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)
 
J

Jim Thomlinson

I am really not clear on what you want to do and the code you posted give me
no help.

Perhaps this???
cells(activecell.row, "A").Interior.ColorIndex = 15
 
D

Dave Peterson

activesheet.cells(activecell.row,1).select

Or maybe you really want:
Activecell.entirerow.range("a1:M1").Interior.ColorIndex = 15
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top