Ignoring error msg

  • Thread starter Thread starter Phil Hageman
  • Start date Start date
P

Phil Hageman

Is there a way to make this array formula ignore and error
message in a cell in the range?

{=INDIRECT(ADDRESS(MAX((ROW(19:30)*
(X19:X30<>""))),COLUMN(X:X)))}
 
One possible way

=INDIRECT(ADDRESS(MAX(IF(ISNUMBER(ROW(19:30)*(X19:X30<>"")),ROW(19:30)*(X19:
X30<>""))),COLUMN(X:X)))

array entered
 
Back
Top