A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I hope I have understood your query correctly.
You want to count the number of cells in range L11:L32 which are not blank and have a value "Male"
in corresponding cell in range F11:F32.
Try the formula:
=COUNTIFS(F11:F32,"Male",L11:L32,"<>"&"")
NOTE: This is NOT an ARRAY formula and DOES NOT require a CTRL+SHIFT+ENTER.
However, if you want to count the number of empty cells in column-L with corresponding cells
in column-F as "Male" then you can try =COUNTIFS(F11:F32,"Male",L11:L32,"="&"")
( pls see the pic below the formula is keyed-in in cell I8 )
Hope you find this Helpful.