↧
Answer by grandocu for Getting the last non-empty cell in a row
You can also use OFFSET. You don't need to specify an ending column, you can just reference the entire row.=OFFSET(1:1,0,COUNTA(1:1)-1,1,1)
View ArticleAnswer by barry houdini for Getting the last non-empty cell in a row
Are your values numeric or text (or possibly both)?For numbers get last value with this formula in Z2=LOOKUP(9.99E+307,A2:Y2)or for text....=LOOKUP("zzz",A2:Y2)or for...
View ArticleAnswer by Jerry for Getting the last non-empty cell in a row
Okay, from what you've given if I understood correctly, you can use this formula in cell J1 and drag it down for the other rows below this cell:=INDEX(A1:I1,1,COUNTA(A1:I1))This assumes that the...
View ArticleGetting the last non-empty cell in a row
I am having a lot of difficulty trying to come up with a way to 'parse' and 'order' my excel spreadsheet. What I essentially need to do is get the last non empty cell from every row and cut / paste it...
View Article