This error message indicates that you have a syntax error in your formula. Looking at your formula, you're missing an ELSE statement for your conditional. You always need to end with an ELSE, even if you have an ELSE IF in the middle.
https://help.anaplan.com/9fb6586e-0219-4771-a660-4ebcc317efc0-IF-THEN-ELSE
Thank you - this has been a huge help.
In terms of best practice and performance you could also create a line item to add some of the values together before using in the IF statement.You could also make a system module for Package and calculate the booleans once there.
Create an intermediate line item:
X = IF SYS Package.Purchase Order Type OR SYS Package. Subcontractor Type THEN B1 + B2 + B3 + B5 + B6 ELSE 0
The system module would replace the use of Type line item in your module
Then your line item would be:IF SYS Package.Purchase Order Type THEN X + B4 ELSE IF SYS Package. Subcontractor Type THEN X ELSE 0
The principles here are to do as few calculations as possible, part of this is achieved by using a System module; the naming convention should be clear so future developers will understand where to look for properties relating to that list.
I am attempting to connect to an azure SQL database vis at the MSSQL connector in data orchestrator but am having issues and I believe it is due to hyphens in database name (which is a fairly standard naming convention I will note!) Example below (fake credentials) - has anyone else encountered similar and is there a way…
Hi, for some reason my shipping costs are the same over every month and I don't know what to do to fix it.
Hello folks, Does anyone know how to work around the Polaris limitation of using the Formula or Ratio summary method alongside the Closing Balance within the same line item? I have a Business Unit list where the total (All BUs) must display the Corporate (1 of 20 leaf items under All BUs total) number of Unique Customers.…