I have the following formula in "Summary" worksheet starting in cell F4:F13...
=COUNTIFS('Master Matrix'!L:L,A4,'Master Matrix'!M:M,"Received")
Of course the "A4" in the formula changes to "A5" when the formula is in F5, etc.
What I would like is something like..
=IF(mycolor<>16,COUNTIFS('Master Matrix'!L:L,A4,'Master Matrix'!M:M,"Received"))
"mycolor<>16" should mean if the background color is not "Color 16", grey, #808080, or RGB 128,128,128, then do the COUNTIFS.
Can someone help me figure this out? Do I need a VBA function and\or a named range to get this to work?