Easy way to compare table from excel

Stacy Rueda

Board Regular
Joined
Jun 23, 2016
Messages
87
Hi

Good Day.

Can someone please help me regarding table in Access. I have data from excel which I imported to Access. Can you have an easy way to compare two data which is duplicate names but different quantity.
Example below.

EXCE1EXCEL2EXCEL1.QTYEXCEL2.QTY
APPLEAPPLE810
APPLEAPPLE108
BANANABANANA63
BANANABANANA36
CHERRYCHERRY23
CHERRYCHERRY32

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>

I am checking this manually by moving my eyes up and down.lols. Guys can you help me on how to import to Access that automatically fit on the quantity from Excel 1 and 2. Thank you so much
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Code:
select 
  tbl_1.EXCE1, 
  tbl_1.QTY,
  tbl_2.QTY 
from 
  EXCEL1 as tbl_1 
  inner join 
  EXCEL2 as tbl_2 
    on 
    tbl_1.EXCE1 = tbl_2.EXCE2
 
Upvote 0
hi, thank you for your reply.

where can I execute the code? I'm just using compare table and is it possible to put code in query table so it automatically match on the quantity even items are duplicate?
 
Upvote 0

Forum statistics

Threads
1,214,988
Messages
6,122,620
Members
449,092
Latest member
amyap

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top