Set rng = ActiveSheet.(D4:K57)
the following code throws "Expected: identifier or bracketed expression". What is the error here?
Set rng = ActiveSheet.(D4:K57)
the following code throws "Expected: identifier or bracketed expression". What is the error here?
ActiveSheet.range("D4:K57")
Normally I would dim the range though,
Dim rng as range
set rng=range("D4:K57")
rng.select' or whatever you want to do with it