I have searched for a solution but can't seem to find one. If one exists, please point me to it. The question is how do I name a range in VBA.
wrkSheet.Range("A1").Name = "Test"
Works fine but as soon as I change it to
wrkSheet.Range("A1:B2").Name = "Test"
gives me problems. Note, wrkSheet is a worksheet object that is defined earlier.
Thanks