Oct 16, 2002 #1 farrelm2 Technical User Oct 4, 2002 18 US I need to create 2 'aging' formulas. One aged 91-120 days, and another more than 120 days. any ideas?
I need to create 2 'aging' formulas. One aged 91-120 days, and another more than 120 days. any ideas?
Oct 16, 2002 #2 dgillz Instructor Mar 2, 2001 10,043 US Try this: If {YourDateField} in Dateadd("d",-91,CurrentDate) to {Dateadd("d",-120,CurrentDate) then {YourAmountField} else 0 Write a similar formula for over 120 days. let me know if you have any questions. Software Training and Support for Macola, Crystal Reports and Goldmine 251-621-8972 dgilsdorf@mchsi.com Upvote 0 Downvote
Try this: If {YourDateField} in Dateadd("d",-91,CurrentDate) to {Dateadd("d",-120,CurrentDate) then {YourAmountField} else 0 Write a similar formula for over 120 days. let me know if you have any questions. Software Training and Support for Macola, Crystal Reports and Goldmine 251-621-8972 dgilsdorf@mchsi.com
Oct 17, 2002 1 Thread starter #3 farrelm2 Technical User Oct 4, 2002 18 US thanks a bunch. works great! Upvote 0 Downvote