Reputation: 1
I want to match up my clients in column A & C along with their corresponding balances in B & D. Columns A & B are my receivables from last month. C & D are this month. I want to compare each client on the same row, side by side.
A B C D
Jane 100.00 Jim 50.00
Jim 10.00 Carl 200.00
Bryan 210.00 Curtis 50.00
Carl 50.00 Dane 50.00
Dane 0.00 Doris 100.00
Desired result:
A B C D
Jane 100.00
Jim 10.00 Jim 50.00
Bryan 210.00
Carl 50.00 Carl 200.00
Curtis 50.00
Dane 0.00 Dane 50.00
Doris 100.00
Upvotes: 0
Views: 197
Reputation: 335
If you want this:
Then
type =CONCATENATE(A2," ",B2)
in F2
,
type =CONCATENATE(C2," ",D2)
in G2
,
type =OFFSET(F2,0,1)
in F10
.
DONE!
Upvotes: 0
Reputation: 159
If you are trying to do this just with Excel functions, you can get the comparison values where the names match in both months like this:
A B E
Jane 100.00 #N/A
Jim 10.00 50.00
Bryan 210.00 #N/A
Carl 50.00 200.00
Dane 0.00 50.00
That is for cell E1. You need to copy down and hide columns C & D to get the above output.
=INDEX(D:D, MATCH(A1,$C:$C, 0), 1)
Of course, this is not a complete solution
Upvotes: 1