Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'd really like Excel to have an All(range, criteria) function, as used in a
number of programming languages. For instance: A B C D 1 y y y n 2 =ALL(A1:C1, "y") -- TRUE =ALL(A1:D1, "y") -- FALSE Though I suppose you can use this work-around code in the meantime: =COUNTIF(A1:D1, "y")=COUNTA(A1:D1) - which ignores blank cells in the calculation. Otherwise you can use: =COUNTIF(A1:D1, "y")=MAX(COLUMNS(A1:D1),ROWS(A1:D1)) Anyone know a better way? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - User Defined Function Error: This function takes no argume | Excel Programming | |||
Need to open the Function Arguments window from VBA for a user defined function. | Excel Programming | |||
User-defined data type; Error: Only User-defined types... | Excel Programming | |||
Help within user defined function | Excel Programming | |||
User-Defined Function pre-empting Built-in Function? How to undo???? | Excel Programming |