Syntax error in SharePoint calculated column formula
Posted
by Jan Aagaard
on Stack Overflow
See other posts from Stack Overflow
or by Jan Aagaard
Published on 2010-06-16T09:34:46Z
Indexed on
2010/06/16
10:02 UTC
Read the original article
Hit count: 249
sharepoint
|calculated-columns
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.
© Stack Overflow or respective owner