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
Hi everyone, I'm trying to use this function on specific members of my grid, as described in the documentation. In my example, the grid contains two row elements: ACTIF and PASSIF. The problem is that when I use this function, it affects all elements in the grid, whereas I only want it to apply to the specified member:…
Hi, Where are the member properties for lists defined in Anaplan XL? In the training documentation there is an example showing a property such as “Birth Date”, which appears to be a list-item attribute. That suggests you can create custom list properties from the Anaplan list. However, when I connect through Anaplan XL, I…
Hi all I have a list of networks organized hierarchically on a list of entities, which is itself organized hierarchically on a list of divisions (organization). An entity can have several networks. I also have a list of product models, which is itself ranked with three higher levels: this “Models” L4 list is ranked at a…