AR aging report/fields
I may be overthinking thhis, so I could use some help!
I am trying to create an AR aging report to calculate a running 0-30, 31-60, 61-90 and 90+. I need to create these fields, and then break up the ARtotals by customers for each AR date range above.
I have a "Days in AR (Age)" field with this formula:
ToDays(Today()-[Date of Service])
And then I created a field "AR Age group" formula:
If([Days in AR (Age)] < 31, "0-30 days",
If([Days in AR (Age)] > 30 and [Days in AR (Age)] < 61, "31-60 days",
If([Days in AR (Age)] > 60 and [Days in AR (Age)] < 91, "61-90 days",
If([Days in AR (Age)] > 90, "90+ days"))))
These both work great. I guess I am struggling with what I need my end result to look like. How do I extract all AR for Company A that is 0-30 days, 31-60 days etc? And then have this displayed in a report?
------------------------------
Kelly Lyons
------------------------------