What formula do I use to show the last cell with text in a colum

M

Melissa

I have an Excel worksheet with 2 sheets. Sheet1 is for data entry and will
have data in columns to record details of meetings, each row is a different
person e.g. column B has details of first meeting, column C has details of
second meeting, column D has details of third meeting and so on .

I want my second sheet to be a report that shows the details of the most
recent meeting i.e I want a formula in sheet2 that looks at sheet1, finds the
last cell in a row with text, and copies this text to the relevant cell in
sheet2. Do I use "go to" command plus a formula? how?
 
L

Luke M

Assuming that there is some type of data in column A, could do:
=INDEX(2:2,,COUNTA(2:2))

Otherwise,
=INDEX(B2:Z2,,COUNTA(B2:Z2))
 
T

T. Valko

This formula will return the *last* (rightmost) TEXT entry in the range
B1:J1.

=LOOKUP(REPT("z",255),B1:J1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top