The following line of code inserts a formula using the function COUNTIF into cell F43.
oSheet.getCellByPosition(5,42).setFormula("=COUNTIF(F33:F36,1)")
The formula is inserted in the cell exactly as expected, but the result in the spreadsheet is Err:508.
(I tried “”=1"", but the result is the same.)
I can manually copy and paste the formula from the formula bar back in to the formula bar and it then works correctly.
A similar expression using a SUM function in place of COUNTIF works correctly.
Is there some limitation on which functions can be used in setFormula? Or am I missing something?