Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
got values on a pivot table that are like:
1.498
1.491
what I want is display 2 decimal places but without rounding
I'm using the following format #,##.00
and I get for the above values 1.50
what I want is 1.49
is this possible?
Hi,
Try Floor(FieldName,0.01)
Hi,
Try Floor(FieldName,0.01)
Try this format:
#,##0.00
Hi,
You can try this format.
#,##.##
You need to use a rounding function in you expression.
Round(number, precision) rounds the number up or down.
Floor(number, precision) rounds down
Ceil(number, precision) rounds up
The expression your need to use is Floor(YourValue, 0.01)