Here's the situation:
First Named Range:
Name = "DualRange"
Worksheet = "Sheet1"
Scope = Workbook
Value = "global"
Second Named Range:
Name = "DualRange"
Worksheet = "Sheet1"
Scope = Sheet1
Value = "local"
Now
Worksheets("Sheet1").Range("DualRange").Value
will always resolve to "local"
But
Range("DualRange").Value
resolves to "local" if Sheet1 is active and "global" if sheet1 is not active.
Can someone please tell me how to reference the workbook scope range when sheet1 is active?