View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Look Up Help Needed

In other words, you want to return the *last* numeric value of the row?

Try something like this:

=IF(COUNT(A2:AE2),LOOKUP(1E10,A2:AE2),"")


--
Biff
Microsoft Excel MVP


"Bob" wrote in message
...
Let's say I have a data table where the top row contains this month's
dates
and the row beneath contains a bank balance. I update the bank balance
row
each day with the prior day's balance. Also, there is a column to the far
right called 'Daily Total.' See below:


Daily Total
Dates| 7/1 7/2 7/3 etc.
Value| $1 $4 $5 etc. ?

How can I have the "Daily Total" column return the most recent date's bank
balance? Note, it is possible that the balance could be zero.