Hi Terry X,
It didn't render the results that I need. I am trying to recalculate the interest for [TRANSFER/DUE AMOUNT OUTSTANDING] which should be .0056 per month if less than 1000.00 but if more than 1000 it should be .01. Can you help me with
this?
Thank you for your assistance.
Hi,
I see... Let's try it without worrying about the Round() function first. So, how about?
INTEREST: [TRANSFER/DUE AMOUNT OUTSTANDING] * IIf([TRANSFER/DUE AMOUNT OUTSTANDING]<=1000,0.0056,0.01)
Hope it helps...