need to match two totals from two different list

B

Bklynhyc

Hi,

I have two lists of total, both content the same information.
Date, merchant no., and total.. after matching if i can assign the same
number from list 1 to list 2. how would i go about doing so?

Best regards
H
 
B

Bklynhyc

so the first list would look like

no. date merchat no. total
1 06/01/09 1234 500.00
2 06/02/09 1234 200.00
3 06/02/09 4321 11.00

and the second would have basically the same without No. and random

date merchat no. total
06/02/09 4321 11.00
06/01/09 1234 500.00
06/02/09 1234 200.00

Thanks again
 
R

ryguy7272

This doesn't make sense; can't figure out what you want to do. I see what
you have now. What do you want to have? You posted two samples of the same
information...
 
J

Jacob Skaria

If I understand you correctly you want to generate the numbers as below

date mer.no total no
6/2/2009 4321 11 =
6/1/2009 1234 500 =
6/2/2009 1234 200 =

Suppose you have the data with numbers in Sheet1 CoA/ColD
In sheet2 you have the above data in ColA/ColC
In Sheet2 col D cell D2 enter the below formula

=INDEX(Sheet1!$A$2:$A$100,MATCH(1,(Sheet1!$B$2:$B$100=A2)*(Sheet1!$C$2:$C$100=B2)*(Sheet1!$D$2:$D$100=C2),0))

Please note that this is an array formula. You create array formulas in the
same way that you create other formulas, except you press CTRL+SHIFT+ENTER to
enter the formula. If successful in 'Formula Bar' you can notice the curly
braces at both ends like "{=<formula>}"


If this post helps click Yes
 
B

Bklynhyc

think of the list where it has few hundred lines. the first list is in order
and the second is NOT. I what to number those on the second list according to
the first.
 
B

Bklynhyc

sorry ,

but how can I do that, seems like whenever I press on ctrl, shift, and
enter. I couldn't past the formula.
 
J

Jacob Skaria

--Copy the formula
--Select the cell. Press F2
--Paste the formula (all in one line unless it is run to the second line b)
--Instead of pressing Enter press Ctrl+Shift+Enter

If this post helps click Yes
 
B

Bklynhyc

Great Thanks for your help, its working fine now

Jacob Skaria said:
--Copy the formula
--Select the cell. Press F2
--Paste the formula (all in one line unless it is run to the second line b)
--Instead of pressing Enter press Ctrl+Shift+Enter

If this post helps click Yes
 
B

Bklynhyc

One more question, i've been getting N/A on the top or bottom of the list.
how can i fix this problem
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top