In column B, I have either a "F" or a "M". In column D, I have an "X" to denote an advanced row. I would like to count the number of X's in for the "F" rows. How do I write the if statement to count this.
In column B, I have either a "F" or a "M". In column D, I have an "X" to denote an advanced row. I would like to count the number of X's in for the "F" rows. How do I write the if statement to count this.

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
Array formula (confirm with ctrl-shift-enter)
=COUNT(IF((D11000="X")*(B1:B1000="F"),1))
Change ranges as appropriate. (NOTE: you can NOT use the entire column in ARRAY formulas)
Steve
This is a simple formula, is not array:
=SUMPRODUCT((B1:B1000="F")*(D11000="X")*1)