Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I want to display my sales data 1561000000 € as 1.561 bn€ in a pivot table but I want the raw number to be exported to excel. Dividing the sales by 1000000000 in the set expression num(Sum(Sales)/1000000000,'#.000 bn€', '.',',') leads to the right format, unfortunately it is no longer possible to export the the raw number.
Any suggestions how to display this type (1.561 bn€) of format and to export the raw sales amount to excel without dividing it?
Many thanks!
You could try to use a dual() for it like:
dual(num(Sum(Sales)/1000000000,'#.000 bn€', '.',','), Sum(Sales))
- Marcus