Hi,
Is it possible to select a hidden sheet to do temporary calculations or do I have to unhide it and then hide it again everytime the macro runs.
Example:
Also is it possible to select the sheet and the range in one line? The following doesn't work:
Thanks.
AMAS
Is it possible to select a hidden sheet to do temporary calculations or do I have to unhide it and then hide it again everytime the macro runs.
Example:
Code:
Sheets("Temp").Visible = True
Sheets("Temp").Select
Range("A1").Select
'more code
Sheets("Temp").Visible = False
Also is it possible to select the sheet and the range in one line? The following doesn't work:
Code:
Sheets("Temp").Range("A1").Select
Thanks.
AMAS