Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Calculation if a bill payment is overdue


This topic is 5849 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hi Guys,

I've been trying to do a calculation field about if a certain job is overdue by -5days, show me an alert. If its overdue by -10days, display another alert.

I've been trying to do it with the following calculation;

If ( IsEmpty ( paid date ) and days left ≠ date global > -5; "Your Late"; If ( IsEmpty ( paid date ) and days left ≠ date global > -25; "OverDue"; " "))

It only works for 'your late' .. and I'm completely lost. Any help would be much appreciated.

Posted

These sorts of formulas work in the order that they are entered so will evaluate first true condition first - try the following formula for the message

(I would replace "days left ≠ date global" with an unstored calc that calcs "overdue days" something like "date global" - invoice date":

If ( IsEmpty ( paid date );

Case(

Overdue days > 25; "OverDue (>25)";

Overdue days > 5; "Your Late (6 to 25)";

"OK (1-4 days)");

"Paid")

Posted

LOL - I saw that too - changed it and changed it back to OPs wording, having decided that as a very "new" person I would probably invite all sorts of invective but now you've said it too! - Actually am more happy that I hadn't made a howler with my comments.

:smile2:

This topic is 5849 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.