Is it possible to debug SharePoint calculated column formulas?
I am trying with a really simple SharePoint calculated formula =IF([YTD]<[Budget], "OK", "Not OK")
. This being a Danish installations of SharePoint I believe the fomula should look like this:
=HVIS([YTD]<=[Budget]; "OK"; "Not OK")
But this just leaves with the same syntax error or not supported error. I have tried all combinations of IF/HVIS, with/without the square brackets, comma/semicolon, single quotes/double quotes, but nothing works. The formula =YTD<=Budget
works.