Question : Excel VBA no matter what column I'm in, select the cell in row 5

Hi Experts

I'm sure this is easy but my brain is tired.

How do I move the ActivelCell to row 5 of that same column?

Eg, if H24 is Active, then select H5.  Of if N12, select N5.

Sorry for a dumb question.

Will

Answer : Excel VBA no matter what column I'm in, select the cell in row 5

Will,

Use a line like this in your procedure:

   Cells(5, ActiveCell.Column).Select

Patrick
Random Solutions  
 
programming4us programming4us