If anyone could provide assistance, I would very much appreciate it.
Thanks,
Bruce
--
Biff
Microsoft Excel MVP
"brumanchu" <brum...@discussions.microsoft.com> wrote in message
news:CF060076-3C0D-4BCA...@microsoft.com...
I use vlookup(concatenate(A,B,C),A1:G6,6) to return the value in column F
(column G is actually in the column A position, i didn't want to retype it
after I noticed)
The process works great when this is the case. However, not I have data
that looks like this:
A B C D E F
G
1 11/1 C X 40 50 =d/e
=concatenate(A,B,C)
2 11/1 D X 50 50 =d/e
=concatenate(A,B,C)
3 11/1 C Y 90 100 =d/e
=concatenate(A,B,C)
4 11/2 D X 85 120 =d/e
=concatenate(A,B,C)
5 11/2 D Y 105 120 =d/e
=concatenate(A,B,C)
6 11/3 C X 97 100 =d/e
=concatenate(A,B,C)
7 11/3 C Y 68 100 =d/e
=concatenate(A,B,C)
Where on 11/1 crew X worked on both C & D products and output 40 & 50
respectively. Vlookup only returns the first 11/1CX column F value, and I
want to add row 1 & row 2 together to get one value for the date 11/1CX
column F
Hope this clarifies.
Bruce
"T. Valko" wrote:
> .
>
Try this...
=SUMIF(G1:G10,J1,F1:F10)
Where J1 = concatenate(A,B,C)
--
Biff
Microsoft Excel MVP
"brumanchu" <brum...@discussions.microsoft.com> wrote in message
news:C9ABB777-E92C-4CD0...@microsoft.com...