HelpNeeded47
New Member
- Joined
- Aug 9, 2022
- Messages
- 7
- Office Version
- 365
I'm looking for a solution to a troubling formula. I'm trying to count entries from the past month, past 3 months and the past year. I know I'm going wrong somewhere as the latter two categories are coming back as 0s, when they should at least be returning the same total as the first.
Is there anything glaringly obvious that needs to be changed? I'd also be very grateful if someone could explain to me what the number functions here actually do...
,"<="&EOMONTH(TODAY(),-90)+1)
Excel Formula:
="Closed this month:" &COUNTIFS(L5:L10020,"*Closed*",M5:M10020,"<="&EOMONTH(TODAY()-1,1)) &CHAR(10)&"Closed in past 3 months:" &COUNTIFS(L5:L10020,"*Closed*",M5:M10020,"<="&EOMONTH(TODAY(),-90)+1) &CHAR(10)&"Closed in past year:" &COUNTIFS(L5:L10020,"*Closed*",M5:M10020,"<=" & EOMONTH(TODAY(),-365)+2)
Is there anything glaringly obvious that needs to be changed? I'd also be very grateful if someone could explain to me what the number functions here actually do...
,"<="&EOMONTH(TODAY(),-90)+1)