Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a small / requirement in rounding.
I don't want to show records ending in .99. Can someone please share a sample expression.
Thank you in advance.
Regards,
Sachin
Try this expression instead: sum({<Item={"=round(frac(sum(Cost)),0.01)<>0.99"} >}Cost)
Try this expression instead: sum({<Item={"=round(frac(sum(Cost)),0.01)<>0.99"} >}Cost)
Thank u Sir. It worked.
You might also be able to use If statement:
If(Round(Frac(sum(Cost)), 0.01) <> 0.99, Sum(Cost))