Hi, I have a formula which works well to count everything but cells with 'Paid' in them:
=IF(A5="","",COUNTIFS('Payment Tracker'!A:A,A5,'Payment Tracker'!L:L,"<>*Paid*"))
However, I want to also exclude from the count cells which are blank, so I tried this:
=IF(A5="","",COUNTIFS('Payment...