hi when using named ranges in vba....i found that you dont necessarily need to refer to the worksheet
e.g let's say i have named range "desk" in the tab "A"
usually in VBA i can just do range("desk").copy
but for this one particular file, it doesn't work...i actually need to do this:
sheets("a").range("desk").copy
Why is that???
e.g let's say i have named range "desk" in the tab "A"
usually in VBA i can just do range("desk").copy
but for this one particular file, it doesn't work...i actually need to do this:
sheets("a").range("desk").copy
Why is that???