Excell right cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I find the right most cell containing a number in a row of cells containing numbers and blanks?
 
Steve said:
How can I find the right most cell containing a number in a row of cells
containing numbers and blanks?

The column number (in row 1) is given by either of these array-formulas:
=MAX(IF(ISNUMBER($1:$1),COLUMN($1:$1)))
=MAX(ISNUMBER($1:$1)*COLUMN($1:$1))
Remember to use CTRL+SHIFT+ENTER rather than just ENTER.
 
Back
Top