I trying to add named range with VBA
Nname = "FindMe"
Formulas = "Vlookup(" & Chr(34) & Nname & Chr(34) & ";Translations!$A:$C;2;False)"
ActiveWorkbook.Names.Add Name:=Nname, RefersToR1C1:=Formulas
But i get
Vlookup(""FindMe"";Translations!$A:$C;2;False)
Instead of
Vlookup("FindMe";Translations!$A:$C;2;False)
Why Excel put double qoutes? How to Get string which i want?
Vlookup("FindMe";Translations!$A:$C;2;False)
RefersTo**, formulas always pop up an error (at least for me)