How can I replace the sheet name with a passed through named variable?
MasterWB.Names("HC_Results").RefersToR1C1 = _
"=OFFSET(Results!R1C1,0,0,COUNTA(Results!C1),COUNTA(Results:Results!R1))"
Does't work when I just do this:
MasterWB.Names("HC_" & wsR & "").RefersToR1C1 = _...