Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Excel formula to determine if any cells in a range contain a value

This is probably quite a basic thing to do, but I've been looking around the internet and have tried several ways of doing it to no avail. This is my spreadsheet A1 - Blank A2 - Text A3 - Boolean A4 - Boolean A5 - Boolean Cells A3, A4 and A5 contain true or false. Is it possible to return a value of true or false in cell A1 if any of A3, A4 and A5 contain true at least once, or false if they all contain false?

Many thanks if you are able to help!

like image 233
user3049027 Avatar asked Dec 19 '22 17:12

user3049027


1 Answers

Consider..................:

=OR(A3:A5)
like image 83
Gary's Student Avatar answered May 16 '23 08:05

Gary's Student