Hi,
If I understand you correctly you will need the following:
Dim wks as worksheet
set wks = Worksheets("insert sheet name in these quotes")
Sheets(wks.Name).Select ' This changes to the named worksheet
Range("A1").Select ' This sets the focus to cell A1. Can have ("A") & row) where row is a variable. All depends upon your code.
If you just want to obtain a value then use
wks.Cells(Row, Col).value
Cheers
If I understand you correctly you will need the following:
Dim wks as worksheet
set wks = Worksheets("insert sheet name in these quotes")
Sheets(wks.Name).Select ' This changes to the named worksheet
Range("A1").Select ' This sets the focus to cell A1. Can have ("A") & row) where row is a variable. All depends upon your code.
If you just want to obtain a value then use
wks.Cells(Row, Col).value
Cheers