Hallo.
I have simple code to select row which located in the inactive sheet, and here is my code
how to select row in the inactive sheet (Sheet2) without abandon active sheet (Sheet1)
thanks in advance
I have simple code to select row which located in the inactive sheet, and here is my code
Code:
Dim ws As Worksheet
Set ws = Sheets(2)
With ws
.Select
.Rows(7).Select
End With
how to select row in the inactive sheet (Sheet2) without abandon active sheet (Sheet1)
thanks in advance