Syntax error in SharePoint calculated column formula -


Is it possible to debug SharePoint calculating column formulas?

I'm really trying with simple SharePoint calculation formula = IF ([YTD] & lt; [budget], "OK", "not ok" ) . This is a Danish installation of SharePoint. I believe that fomula should look like this:

  = HVIS ([YTD] & lt; = [budget]; "OK"; "Not well ")  

but it leaves with only one syntax error or is not a supported error. I / I with all combinations of IF / HVIS / non-square brackets, comma / semicolon, single quote / Tried without double quotes, but nothing works. Formula = YTD & lt; = Budget works.

Depending on the correct formular how the "Danish" installation is: - (

If there is a language used to create a site with the list then you need to use "HVIS" instead of "IF"

If the regional setting is Denmark, As "separator", it is necessary to use "" because "," is used as a decimal point.

Are:

  = HVIS ([YTD] & lt; = [budget]; "ok"; "not ok") = IF ([YTD] & lt; = [budget]; "OK", "not ok") = HVIS ([YTD] & lt; = [budget], "OK", "not ok") = IF ([YTD] & lt; = [budget], "OK" , "Not ok")  

Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -