Sort of new to this so having some issues.
I'm trying to identify how many entries were made by employees within the last 30 days from a second data sheet. One column has their names and the other has a date entered (both same sheet). I can get the total amount of entries onto a data sheet with this formula:
=COUNTIF({Range}, "Employee Name")
However, when I try to narrow that down to the last 30 days from today's date, I get #UNPARSEABLE. This is what I have for the total formula:
=COUNTIFs({Range}, "Employee Name"), AND({Range}, >TODAY(-30))
Anyone have an idea where I'm off base?