Hello,
I have a sheet that looks like the image below, where employees show a complete or denied status for the date (column 3 is a helper column referring to the parent).
On another sheet I'm trying to pull how many employees are "Complete" for the current and following week (there is only one date per week). I tried with the Today function but it is not working:
=COUNTIFS({Recruiting Range 3}, TODAY(0), {Recruiting Range 2}, "Complete")
However, using TODAY is only going to show the correct answer on the date listed, which is fine but I would prefer it to show the duration of the week. Any ideas how to fix this?
Edit: I have also tried
=COUNTIFS({Recruiting Range 3}, @cell = "8/23/2021")
and switched the date with "Today(-2)" but it keeps only pulling 0.