I have built a spreadsheet which uses R1C1 notation in the formulas itself. I have succeeded in doing everything that needs doing without having to resort to macros or VBA (which require a different file format and that the user "enable macros" when opening the file, etc).
The only problem is that I have now noticed that while Excel translates all of its functions to the local language (I have to deal with English, Portuguese and perhaps Spanish), it does not deal with the string literals which are used for the R1C1 notation. For example, INDIRECT("R[1]C[1]") is translated in Portuguese to INDIRETO("R[1]C[1]") which would be fine were it not for the fact that Portuguese R1C1 is actually L1C1.
I assume that were I to use VBA this would not be a problem since VBA isn't translated, which I would take to mean that R1C1 is in fact R1C1 regardless of the client language. But is it possible to do this without having to resort to VBA?