I am working on an Aging report and my customer would like to group items by the following values: 0-30, 31-60, 61-90, 90+
I am creating a calculated column that will contain these values and let me group items for a view.
The following calculation works until I hit a callculation that is 61 or greater. In this case it displays No rather than 61-90 or 90+ as desired:
=IF(aging<31
,"0-30"
,IF(AND(aging>30,aging<61)
,"31-60"
,IF(AND(aging>60,aging<91)="61-90"
,IF(aging>90
,"90+"
)
)
)
)
The aging column is itself a calculated column which provides the age of an item Today()-[Created]. This is a column that was also requested.