Need Help: Update columns in two excel sheet

cyberdony2k

New Member
Joined
Dec 25, 2015
Messages
3
Hello,

I have two excel sheets with two column names (email, status) on both. I want to update status column on second sheet with status columns on first sheet(only if e-mail matches on both).



Please help in writing a formula for same.
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Hello,

I have two excel sheets with two column names (email, status) on both. I want to update status column on second sheet with status columns on first sheet(only if e-mail matches on both).



Please help in writing a formula for same.
Hi cyberdony2k, welcome to the boards.

Based on your description, and assuming that the email addresses are in column A of both sheets (starting in A1) and the status is in column B of both sheets (starting in B1), try the following formula and drag-fill it down your list:

=IFERROR(INDEX(Sheet1!$B$1:$B$100,MATCH(Sheet2!A1,Sheet1!$A$1:$A$100,0)),"")

Sheet1 is the one you are looking the statuses up from.
Sheet2 is the sheet you put the formula in.

If these are actually meant to be the other way around, simply swap the sheet names around in the formula.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,239
Messages
6,170,947
Members
452,368
Latest member
jayp2104

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