Tennisguuy
Well-known Member
- Joined
- Oct 17, 2007
- Messages
- 564
- Office Version
- 2016
- Platform
- Windows
I want to count the number of times where a group of cells are blank AND a group of another cells are not blank. In cells J13:L212 I want to count the number of cells that are blank AND in cells M13:O212 I want to count the number of time the cells are not blank if the value in cells I13:I212 is equal to A.
For example if there is a "A" in cell I13 and the cells are blank in J13:L13 but the cells in M13:013 are not blank the count should be 1 since there was a value say cell N13.
I tried this formula but it didn't work
For example if there is a "A" in cell I13 and the cells are blank in J13:L13 but the cells in M13:013 are not blank the count should be 1 since there was a value say cell N13.
I tried this formula but it didn't work
IFERROR(COUNTIFS($I$13:$I$212,"A",$J$13:$L$212,"=",$M$13:$O$212,"<>"),0) |