Matching product cost data across two spreadsheets

isabellaheard

New Member
Joined
Sep 6, 2022
Messages
1
Office Version
  1. 365
Platform
  1. MacOS
Hi there,
Apologies if this is a little basic, but I've tried a few things and not had much luck!

I have two sheets, one has around 570 products and the other has 575, with mostly matching product codes.

One sheet has a column with the cost of each product, one doesn't. How can I quickly add the cost of products to the second sheet with the matching product codes?

What formula would I need, and where would I need to add this?

Any help would be massively appreciated!
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hi, and welcome in here
Vlookup
Or
Index,match
Ex
product & cost in sheet1
in sheet2
Excel Formula:
B1=IFERROR(VLOOKUP(A1:$A$575,Sheet1!$A$1:$B$575,2,0),"")
or
Excel Formula:
 B1=IFERROR(INDEX(Sheet1!$A$1:$B$575,MATCH($A$1:$A$570,Sheet1!$A$1:$A$575,0),2),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,952
Messages
6,122,454
Members
449,083
Latest member
Ava19

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