Chirag R Raval
Member
Dear All Experts,
If ( in VBA) we can easily access range , defined base on Set keyword,
Then what is the importance Or benifit Or difference to use named range?
Suppose
We can easily access this range in VBA to do
Whatever possible with it.
If same range access through named range
Then what it major benifit or difference between
This two approach?
Hope some precise concept found behind this to
As guideline as which approach should use in which condition.
Regards,
Chirag Raval
If ( in VBA) we can easily access range , defined base on Set keyword,
Then what is the importance Or benifit Or difference to use named range?
Suppose
Code:
Dim myrng as range
Set myrng=activesheet.range("A1:"D5")
Myrng.font.bold=true
We can easily access this range in VBA to do
Whatever possible with it.
If same range access through named range
Then what it major benifit or difference between
This two approach?
Hope some precise concept found behind this to
As guideline as which approach should use in which condition.
Regards,
Chirag Raval