Unparseable Error

I am can't figure out why I am getting the error, if anyone can help
=COUNTIFS([Start Date]:[Start Date],"<="TODAY(),[Module]:[Module],"Retail"))
Best Answer
-
The range and conditions need to be separated by commas instead of directly comparing them.
=COUNTIFS([Start Date]:[Start Date], @cell <= TODAY(), [Module]:[Module], "Retail")
Answers
-
@kristi_pei Hi, remove the quotation marks for the date <=TODAY() and remove the extra bracket
-
=COUNTIFS([Start Date]:[Start Date] <= TODAY(), [Module]:[Module] = "Retail")
Hi! Thank you for your help. Now I am getting an #invalid operation error. I guess that it is progress
-
The range and conditions need to be separated by commas instead of directly comparing them.
=COUNTIFS([Start Date]:[Start Date], @cell <= TODAY(), [Module]:[Module], "Retail")
-
YES!!! That worked. Thank you both!! I am so excited that this was resolved!
Help Article Resources
Categories
Check out the Formula Handbook template!