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
I am unable to see the cloudworks integration on the UX page. Can you advise what I am doing wrong
I want to create a line item which will increment by 1 every time an action is run manually. This action is an import which doesn't involve any file upload to anaplan. The module where I want this line item has users list & SKU list dimension. No time. So basically, I want to track how many users have selected an SKU and…
Hi Community, I’m encountering an issue where an export created in Anaplan is missing column headers when retrieved via the API. However, when I manually run the same export from the Actions tab, the downloaded file includes the headers. Has anyone experienced this behavior before? I’d appreciate any insights into the root…