I have a named range that is called tempPrintArea and refers to
='Label packinglist'!$A$1:$J$59
I want to use VBA to add another selection to it, so that it refers to
='Label packinglist'!$A$1:$J$59,'Label packinglist'!$A$61:$J$110
How can I do this?
I'm envisioning something like
Range("tempPrintArea").RefersTo = wks.Range("tempPrintArea").Address & wks.Range("$A$61:$J$110")
... but that doesn't work
