I want to count the number of rows that meet certain criteria, with both AND and OR conditions.
As long as I'm using only AND conditions, it works perfectly. Adding multiple OR conditions gives an #N/A output though.
I can't find the solution anywhere here, have been reading about applying Arrayformula and Range but not sure how to use it.
Any help is much appreciated:
=> Count the records where several AND conditions are met, and at least one of the OR conditions:
=COUNTIFS(K3:K; ">0"; S3:S; "No"; OR(M3:M < 50%; F3:F < 0,9; E3:E > 24))
Thanks!