T
tmb
I have a vba macro with a lot of references like...
Range("A" & 1).Select
strData = ActiveCell.Value
This has defaulted to WorkSheet 1
Now I want to put every thing on WorkSheetX down in the Workbook
Isn't there a vba statment that says... in effect... any references from
here on till I say stop are to WorkSheetX. Like...
References are now to WorksheetX
code
code
code
References are now to WorksheetABC
code
code
etc
thanks for any help.
tmb
Range("A" & 1).Select
strData = ActiveCell.Value
This has defaulted to WorkSheet 1
Now I want to put every thing on WorkSheetX down in the Workbook
Isn't there a vba statment that says... in effect... any references from
here on till I say stop are to WorkSheetX. Like...
References are now to WorksheetX
code
code
code
References are now to WorksheetABC
code
code
etc
thanks for any help.
tmb