Here's what I'm using...
For i = 15 To 17 Rows(ActiveCell.Row).Columns(i).Select
If (ActiveCell) >= 1 Then Range((ActiveCell.Column) & 1).Select
Next i
The bolded piece is where I'm stuck. I'm trying to
Any suggestions how to get to cell 1 of whatever column I'm on?
For i = 15 To 17 Rows(ActiveCell.Row).Columns(i).Select
If (ActiveCell) >= 1 Then Range((ActiveCell.Column) & 1).Select
Next i
The bolded piece is where I'm stuck. I'm trying to
- Get to Cell 1 of the current column
- Copy what's there
- Do a little extra stuff which I have worked out
- Then get back to the cell I started in
Any suggestions how to get to cell 1 of whatever column I'm on?