ZS means RC. But I think you need square brackets in the international
version, like
=vlookup(RC[-11],pt_tab,month(RC[-9])+2)
I'm a bit surprised you use the FormulaR1C1 property with a German formula.
Normally you would need the FormulaR1C1Local property to do that; the
FormulaR1C1 will always use the international (=US...) representation of the
formula.. Maybe in Excel2000 that was not yet the case?
The FormulaR1C1Local (or FormulaLocal, with A1 addressing style) is very
helpful for translating formulas. Write one style, read the other, and you
have your translation, one direction or the other.
It includes transalting special charachters, like round or square brackets,
argument separators, etc. But not any constants, that is, text between
codes, like string formats in a TEXT() function.
But you can retrieve those for the local language with the Excel4 function
GET.WORKSPACE.
--
Kind regards,
Niek Otten
Microsoft MVP - Excel
Mike H said:
Hi,
here are all the keyword tranlations and there's no ZS function in German
http://dolf.trieschnigg.nl/excel/excel.html
So I guess the English translation is
=vlookup(ZS(-11),pt_tab,month(ZS(-9))+2)
Where ZS is an integer variable
pt_tab is a named range
Mike