View Single Post
  #4   Report Post  
Domenic
 
Posts: n/a
Default

Assumptions:

A2:B7 contains your first table

D2:E7 contains your second table

Column G, starting at G2, contains your list of account numbers

Formula:

H2, copied down:

=VLOOKUP(G2,IF(COUNTIF($A$2:$A$7,G2),$A$2:$B$7,$D$ 2:$E$7),2,0)

Hope this helps!

In article ,
"Morphyus C via OfficeKB.com" wrote:

Thank you L. Clark...actually I should have explain it more. After these two
list I have the third list with just the Acct # but it should populate the $
amt across it as I have mentioned in my posting.

Lewis Clark wrote:
One way:

=IF(ISERROR(VLOOKUP(D9,A1:B6,2,FALSE)), VLOOKUP(D9,
C1:D6,2,FALSE),VLOOKUP(D9, A1:B6,2,FALSE))

This assumes the first list is in the range a1:b6, and the second list is in
the range c1:d6, and the account number you are looking up is in cell d9.

Hi guys, I 'm having a bit difficulty finding out the right solution of my
poblem.

[quoted text clipped - 24 lines]
Thanks
Morphyus