Hi All,
Β
I want to truncate the decimals from a number like below but do not want to round it.
2.22939393 -> 2.229
2.22977777 -> 2.229
2.59999 -> 2.5 instead of 2.6
Seems that would always be a round down.
Can you use the ROUND function?:Β ROUND(Line Item, [decimal places], DOWN]
If you do not want to round then your only other option is text cutting.
You can do LEFT(TEXT(number line item),5)
You can have an IF statement to not always take the 5 first (2.229) but the first three (2.5), depending on a numeric condition.
Hi, Thanks for your reply but Round down will not work as it will round 3.4562 to 3.0 instead of 3.4. I want a way to truncate the number till the first decimal
When exporting from Anaplan using "Tabular Multiple Column", will the export include only the line items saved in the saved view, or will it also export line items that are excluded from the saved view?
Have noticed that in the last couple of days a couple of Cloudworks integrations have got a status of "Auto_Deactivated". Couldn't find anything in Anapedia and wondered if anyone knew what this was about? Seems to be something about the schedule as deleted the existing one, added it back and is now running fine but isβ¦
Hello, I am trying to understand how the ITEMLEVEL function works. I am reviewing the example shown in Anapedia (https://help.anaplan.com/itemlevel-756d1428-5f1d-4d79-8274-d075a1bd312f) but I do not understand how Result 1 is calculated. For example, why does California returns 0 but Texas 4? Also, Spain returns 3 but UKβ¦