I'm trying to count everytime column K has a "Y" and column Q has either "M", "Mop", or "Cop". I use Excel 2010.

This is what I came up with:
=SUM(COUNTIFS('2012'!K:K,"Y",'2012'!Q:Q,"M"),COUNTIFS('2012'!K:K,"Y",'2012'!Q:Q,"Mop"),COUNTIFS('2012'!K:K,"Y",'2012'!Q:Q,"Cop"))

Please tell me the better way to do this. I know there must be at least one. Thanks in advance.