Google-sheets – How get last added text from column into different sheet

google sheets

How can I get the last added plain text from a column in sheet1, which also has empty rows, into a cell of a sheet2?

With help I managed to do this with the last added date, but with plain text I am stuck.

Any Suggestions?

Best Answer

This formula works perfect:

=IFERROR(INDEX(FILTER(Sheet1!A:A,Sheet1!A:A<>""),
         COUNTA(FILTER(Sheet1!A:A,Sheet1!A:A<>""))))

(found the answer somewhere else)