Can I debug computed formulas for SharePoint columns?
I am trying to use a simple SharePoint calculation formula =IF([YTD]<[Budget], "OK", "Not OK"). These are Danish installations of SharePoint. I believe that fomula should look like this:
=HVIS([YTD]<=[Budget]; "OK"; "Not OK")
But it just comes out with the same syntax error or the error is not supported. I tried all IF / HVIS combinations, with / without square brackets, comma / semicolon, single quotes / double quotes, but nothing works. The formula =YTD<=Budgetworks.
source
share