That accepted the expression, but is giving me a #VALUE! error now. To give you some background on what I'm trying to accomplish. I'm trying to calculate turnaround times based on two different date fields. I am calculating the turnaround times in a query in access. Then I'm exporting to excel to calculate a few more things. I'm using this code to count only the records that we have received during the previous month.
Then I'm using this code to give me a value to calculate percentages of how many have met our turnaround time of <3 days.
It gives me a 1 if that turnaround time is met, and a 0 if it isn't. Then I would like to compare the ones that met the turnaround time against the count of the records for the previous month. This is why I'm looking to calculate with the two codes together so that I have one field that has both calculations, and one that only has the total count of records received.

Originally Posted by
ChemistB
Yes, looks like you have too many (or misplaced) parentheses though. Also, what is $F:$F<3 supposed to mean? Try
=IF(AND(SUMPRODUCT(--(TEXT($E:$E,"mm-yy")=TEXT(EOMONTH(TODAY(),-1),"mm-yy")),COUNT($F:$F<3)),1,0)
Bookmarks