I want to store a formula in the database or in code like such ... SUM(5,5) or SUM(10,5.35)
Even if I set the separators like below it does not parse correctly on non English US platforms ...
CalcQuickBase calcQuick = new CalcQuickBase();
CalcEngine.ParseDecimalSeparator = '.' ;
CalcEngine.ParseArgumentSeparator = ',';
I want to store the formulas in english and then have the results provided in a regional format.. how do we do this ?