I'm trying to select cells B*:D* and H*:APP*. where *= active.cell.row. I do not want to select E*:G*.
Can't seem to get this to work & would appreciate a little help please.
When I try this code it selects everything including E*:G*
Thank you
K
Can't seem to get this to work & would appreciate a little help please.
When I try this code it selects everything including E*:G*
Code:
Sub Macro1()
Dim Ro As Integer
Ro = ActiveCell.Row
Range(Cells("B" & Ro & ":" & "D" & Ro), Cells("H" & Ro & ":" & "APP" & Ro)).Select
End Sub
Thank you
K