Mar 17 2023 09:22 AM
In the attached picture, I would like to create a formula that looks at different cells (not a range of cells that is continuous) to tell if all of them say 1.
For example, did all the players on the R team show up on 3/16/23? If all those values are 1, then return a 1 to me. If even one of them is a zero, return a zero to me. That way, I have a quicker way to tell if everyone from that team was at our workout.
Mar 17 2023 09:32 AM
SolutionMar 17 2023 09:59 AM
Mar 17 2023 10:03 AM
Mar 17 2023 10:22 AM
=MIN(IF($C$2:$C$24=F8,$D$2:$D$24))
Very good solution thank you. I didn't think of this approach. Since i work with the desktop version of Excel 2013 at the moment i can't apply MINIFS but the above formula works as well if it's entered as an arrayformula with ctrl+shift+enter.
Mar 17 2023 09:32 AM
Solution=N(COUNTIF($C$2:$C$24,F8)=COUNTIFS($C$2:$C$24,F8,$D$2:$D$24,1))
You can try this formula.