Using the excel formula to search, if all cells in the range read "True", if not then show "False"
For instance:
A B C D True True True True True True FALSE True
I want the formula to read this range and show that in line 2 it was “False”, and since there are no folds in line 1, I want to show “true”.
Can anyone help me with this?
As it turns out, you have the values as text, not the numeric value True / False, then you can use either COUNTIF, orSUMPRODUCT
COUNTIF
SUMPRODUCT
=IF(SUMPRODUCT(--(A2:D2="False")),"False","True") =IF(COUNTIF(A3:D3,"False*"),"False","True")
, TRUE/FALSE:
=AND(A1:D2)
, , - Ctrl + Shift + Enter Enter.
=AND(EXACT(A1:D2,"TRUE"))
=IF(COUNTIF(A1:D1,FALSE)>0,FALSE,TRUE)
(or you can specify any other range to view)
Source: https://habr.com/ru/post/1530268/More articles:Replacing matlab search function in python - pythonHow to get the active name of the application window, as shown in the task manager - c #Как включить рубиновые переменные в javascript в Rails 4? - javascriptHow to get the name of the active window? - cНужны ли устройства Android для питания USB, чтобы поддерживать пользовательские аксессуары USB? - androidDeny blacklisting user registration in Rails - securityKnockout how to subscribe to every change in an observable array - javascriptHow can I “transform the remaining” algorithm into a functional style? - algorithmGoogle Map API - multiple icons in the wrong place - javascriptActivate python 3 environemnt in Anaconda with batch file - cmdAll Articles