Hi,
I'm trying to figure out how to round the last decimal place. For example, if the number is 37.567 I need it to be 37.57
Here is my code:
'Calculate Approve
intDecimalApproved = (intApproved / intTotal - intReconApproval) * 100
then
FormatNumber(intDecimalApproved, 2)
Seems to me the format function would round the last two decimals. Any help would be greatly appreciated.
Thank you,
WebGuyToo