IIf(day()>ReturnDate, DateDiff("d", day(), ReturnDate), 0)
.
.
.
I intend it to be:
"If today's date is > ReturnDate,
Find the difference between Today's date and the ReturnDate,
Otherwise, return '0' as the number of days."
Could somebody tell me why this formula isn't working out for me?
It...