Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

calculation date range

Status
Not open for further replies.

Jabert73

Technical User
Oct 25, 2005
1
US
I want to test a due date, and display a message depending on:
Due Now - (the date is 29 days or less away, or has past the due date - Statur(CurrentDate))
Due Soon - (the Due Date is 30-90 days away)
If the date is 91 days or more, no message

I have come up with a solution that almost works, but it requires several calculations. Is there a quick way to caclulate a date range?

Mac OS 10.3.9 - G4 dual - FMP 6

Thanks,

John
 
Wonder why this hasn't been answered? Hope I'm not missing something!

Case(DueDate > Status(CurrentDate)+ 90; "";
DueDate > Status(CurrentDate)+ 29; "Due Soon";
DueDate >= Status(CurrentDate); "";)



Cheers,
Paul J.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top