I'm trying to count the number of cells which contain either a N or a A in one column and a Y in another column.
I can get it to check for one value in each column (N in colB and Y in colJ)
=SUM(COUNTIFS('Nov-Jan'!B$3:B$60,"N", 'Nov-Jan'!J$3:J$60,"Y"))
But i cant get it to match for either a N or A in colB and a Y in colJ. Tried this but it doesnt work:
=SUM(COUNTIFS('Nov-Jan'!B$3:B$60,"N",'Nov-Jan'!B$3:B$60,"A", 'Nov-Jan'!J$3:J$60,"Y"))
Is there anything I'm doing wrong/can change to get the same outcome? I looked at the OR function but apparently it ignores text based values.