I've read through several help topics and I am still having issues, hoping someone can help me.
I have a field that is counting the days between the due date and todays date. I need to use these numbers to create a formula to provide an aging report.
I'd like the 'Aging' Field to use age count to represent
I need to group my table by aging, which I am trying to do by creating a formula based on the age count.
- if age count has a number between 1-30, aging is 1-30
- if age count has a number that falls between 31-60, aging is 31-60
- if age count has a number that falls between 61-90, aging is 61-90 Days
- if age count has a number that falls between 91-119, aging is 91-119 Days
- if age count has a number that falls between <120, aging is over 120 days
I’ve read through many articles and forum discussions about the nested formulas, but continue to run into errors, as a lot of the examples are not for so many options.
Not only am I having trouble with the formula the age count formula I currently have isn’t working properly, since anything with a $0.00 balance should not have an age count. Below is the formula I am currently using:
IF({Balance Due}='$0.00',"",DATETIME_DIFF({todays date},{Due Date},'days'))
