Formula ? Return value from rightmost non-blank cell in a row of

G

Guest

Please help me with a formula for the following return last entry in row to
col. g:

a b c d e
f g
1 6/7/05 8/3/05 7/2/05
7/2/05

2 5/2/05
5/2/05

3 7/13/05 8/6/05
8/6/05

4 6/7/05 9/13/05
9/13/05
 
D

Domenic

For the last numerical value...

G1, copied down:

=LOOKUP(9.99999999999999E+307,A1:F1)

....and format cells as date.

Hope this helps!
 
G

Guest

Thank-you! Is there any way to supress the #N/A that results for rows where
all the cells are blank?
 
G

Guest

Thank-you! Is there any way to supress the #N/A that results for rows where
all the cells are blank?
 
B

Bob Phillips

=IF(COUNTA(A1:F1)=0,"",LOOKUP(9.99999999999999E+307,A1:F1))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
G

Guest

Thank-you!

Bob Phillips said:
=IF(COUNTA(A1:F1)=0,"",LOOKUP(9.99999999999999E+307,A1:F1))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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