how to create best formula for using IF ELSE?
my 10 cents here..say you calculate something based on a condition and 0 otherwise, you could structure it like
if not <condition> then 0 else <calculation>..by this way you get faster performance (lets say you are expecting 0 on more than 50% of the cells)...
Just to add onto what @ArunManickam mentioned above, you can also consider the following:
1. If you're doing a boolean test, eg If <condition> then TRUE then FALSE; then just write <condition> because it'll give you the same result.
2. If the 'If then else' starts to look big and tough to understand, you can copy it from Anaplan, and paste it in Notepad, so that you can create indentation to help you read/modify more easily, eg
"if condition A then result 1 else if condition B then if condition C then result 2 else result 3 else result 4"
can be converted into the following in Notepad, before you paste it back. Please remember to get rid of the 'Tab' before you process the formula.
"if condition A then
result 1
else if condition B then
if condition C then
result 2
else
result 3
result 4"
3. Referring to the same 'if then else' scenario in item 2, or another 'if then else' which is even longer, you can also consider breaking it into multiple line items, eg
Line Item 1 = if condition A then result 1 else if condition B then if condition C then result 2 else result 3 else result 4
can be broken up into
Line item 1 = if condition A then result 1 else Line Item 2
Line Item 2 = if condition B then if condition C then result 2 else result 3 else result 4
4. If you see a lot of 'If then else' that refers to ITEM(), eg
'If item(Product)=Product.A then result 1 else if ITEM(Product)=Product.B then .....
then you'll need to consider using another Anaplan feature, LOOKUP. Please refer to the following for more details on LOOKUP.
https://help.anaplan.com/anapedia/Content/Calculation_Functions/All/LOOKUP.html?_ga=2.142814449.55075348.1551800869-1239638901.1550667215
Thanks,
LipChean
Is there any way to have the last item of the waterfall be a running total that starts from 0 and shows the net of the previous waterfall components? I'm using line items here, would just want the Ending NAV to always start at 0
I have installed the Anaplan app in Salesforce, but have been receiving an error. In the Anaplan part it asks for you to contact support, but does not provide any details into how to do this, just raising a ticket in the portal? WOuld be great to have more information.…
Hello Everyone, I am seeking guidance on how I could create a workflow process in Fluence consolidation workspace, using the ADO import task. Does anybody know what kind of information I need to fill in these fields? I have watched the ADO training but only explains the data transformation and integration within Anaplan…