Excel - VLOOKUP with 2 conditions? -
wondering if can help. have 2 tables. first 1 has list of dates each vendor work against team leader name. displaying only: dates worked (a) .... vendor name (b) .... team leader (c) table has got 400 lines.
the second table has list of donations each vendor did per day. vendors has got 5 or 6 items per day. table pretty similar first one, because team leader change 1 day another, 1 vendor may 2 or 3 different leaders every week (but 1 on day). table has got 10.000 lines.
so columns of table are: dates worked (g) .... vendor name (j) .... team leader (k)
but k column not populated. need formula goes on k column: if (g)=(a) , (j)=(b) return value (c) (k)
can this?
cheer, bruno
you should able use array version of index:match formula:
=index(a:c,match(g1&j1,a:a&b:b,0),3)
Comments
Post a Comment