Hi, Let's say I have two dates in my table, DueDate and PaidDate. What I need to do is calculate the difference between those two dates. However, if the DateDiff() returns less than 0, it should show 0.
DateDiff(Day, 0, (PaidDate-DueDate-1)) as DelayDays
Should show 0 for anything less than 1.
Thank you.