Hi all
I need to round down values in report designer. Say a customer owes $1076, we need it to show as $1000 only. Please advise
Hi all
I need to round down values in report designer. Say a customer owes $1076, we need it to show as $1000 only. Please advise
Best answer by arthia98
Hi
To calculate number of digits in a variable:
PadRight( '1', Len([YourAmountField] ), '0' )
Use the below formula to roundoff:
= Floor([YourAmountField] / (CInt(PadRight( '1', Len([YourAmountField] ), '0' )))) * (CInt(PadRight( '1', Len([YourAmountField] ), '0' )))
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.