dragonmouse
Board Regular
- Joined
- May 14, 2008
- Messages
- 131
- Office Version
- 2016
- Platform
- Windows
I want a formula that will read multiple columns. IF the column ISBLANK I want it to go to the next column on the list. IF that column has a value then, move to the next column till all are read. At the end of the process I want it to READ all columns and return the minimum value (which would be the earliest date). What I have so far is:
=IF(OR(ISBLANK(L4)),"",MIN(N4,Q4,T4,W4,Z4,AC4)) This "ALMOST" works If cell L4 is blank it returns a BLANK cell, If cell L4 is filled in it looks at the rest of the cells in a string (N4,Q4,T4,W4,Z4,AC4) and returns the EARLIEST date due.
What I need is something like =IF(OR(ISBLANK(L4,O4,R4,U4,X4,AA4)),"",MIN(N4,Q4,T4,W4,Z4,AC4))
I want it to read more filled in cells to compare but it returns an error of "too many arguments". I know this is an "easy peasy" one for smart folks.
=IF(OR(ISBLANK(L4)),"",MIN(N4,Q4,T4,W4,Z4,AC4)) This "ALMOST" works If cell L4 is blank it returns a BLANK cell, If cell L4 is filled in it looks at the rest of the cells in a string (N4,Q4,T4,W4,Z4,AC4) and returns the EARLIEST date due.
What I need is something like =IF(OR(ISBLANK(L4,O4,R4,U4,X4,AA4)),"",MIN(N4,Q4,T4,W4,Z4,AC4))
I want it to read more filled in cells to compare but it returns an error of "too many arguments". I know this is an "easy peasy" one for smart folks.