I am trying two compete two formulas that will both calculate a YTD total that compares the number of "resolved" tickets to date in the current Fiscal Year and number of tickets "resolved" the same date range of the previous year. Here is what I have, but the result of both calculations is returning "0," which perplexes me.
Formula for PREVIOUS FYTD:
COUNTIFS([Ticket Status]:[Ticket Status],"Resolved", [Date Resolved]:[Date Resolved],DATE(2020,07,01)<=TODAY()-365)
Formula for CURRENT FYTD:
COUNTIFS([Ticket Status]:[Ticket Status],"Resolved", [Date Resolved]:[Date Resolved],DATE(2020,07,01)<=TODAY())
- (2020,07,01) represents the first day of the Fiscal Year
Feedback is GREAT appreciated!