I'm sure I'm just missing something in my statement because i get a formula error, but I'm trying to have my Column "i" look at Column "E" which is a date format.
Column "i" would return "Expired" if the date is <today(), "Expiring" if the date is between today and 120 days, and "Current" if its >121 days.
Table 1
Then I need to put the output of "i" in another table for a countifs that will count the total
Table 2
Any help would be appreciated.
Column "i" would return "Expired" if the date is <today(), "Expiring" if the date is between today and 120 days, and "Current" if its >121 days.
Table 1
Column E | Column I |
---|---|
9/1/2020 | EXPIRED (Because its <Today) |
10/1/2020 | EXPIRING (Because it expires between today and 120 days) |
2/1/2021 | CURRENT (Because its >120 days) |
Then I need to put the output of "i" in another table for a countifs that will count the total
Table 2
Column B | Column C | Column D |
---|---|---|
SCHOOL A | CURRENT | 1 (Would Sum if Table 1 Column "i" matched "current" + "expiring") |
SCHOOL A | EXPIRING | 3 (Would Sum if Table 1 Column "i" matched "expiring") |
SCHOOL A | EXPIRED | 5 (Would Sum if Table 1 Column "i" matched "expired") |
Any help would be appreciated.