I manually reduced rows in sheet, how do I update the reduced sheet, based on change to original sheet

Davefromlondon

New Member
Joined
Feb 25, 2021
Messages
9
Office Version
  1. 2016
Platform
  1. Windows
Hi
I have a sheet of 500 rows, I manually reduced it to 100 rows using judgement of what rows I wanted to keep. The columns remained the same.
I received a new version of the original sheet and it has 1 extra column
How do I add the new column data, from the new version of 500, automatically, to the reduced sheet of 100 rows ?
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
What identifies a row as being unique ? If it can be identified as unique by a single column you can use VLookup. If you need multiple columns to identify a row as unique AND the new column is numeric you can use SumIfs.
If you need multiple columns to identify it as unique and the extra column is not numeric it gets a little more complicated. (I believe you are on Excel 2016 and won't have xlookup).
Given you didn't mention vlookup lets cross that bridge when we get to it.
(If you haven't done anything to the 100 rows in terms of rearranging the columns or adding information or manually sorting the rows, and the 100 rows are definitely in your new 500 row data, there will be an option of going the other way ie identifying which of the 500 rows are in your 100 rows eg using Countifs)
 
Upvote 0
Thanks you

A person's email address is unique in 1 column.

I may have removed some extraneous columns from the original parent sheet. , but I can do the same to the new version of original . I can edit so that child sheet and parent sheet have the same columns, except the new version of parent has 1 new column I see to add to the child
 
Upvote 0
Hello Dave,
You are going to need a crash course in using Vlookup.
One of shortest video I could fine quickly is this one:-
Vlookup DONE QUICK

This is a mock up of your 100 line child sheet

20210227 VLookup Crash Course.xlsx
ABCD
1Vlookup
2
3First NameLast NameEmail AddressEXTRA COLUMN
4TomJonestjones@xxx.comTjones
5JohnSmithjohnsmith@yyy.comJsmith
6RichardBransonRichardB@zzz.comRbranson
100 Line Extract
Cell Formulas
RangeFormula
D4:D6D4=VLOOKUP(C4,Sheet2!$E$2:$H$4,4,FALSE)


This is a mock up of your Parent sheet (500 lines) - I left it called Sheet2 for simplicity

20210227 VLookup Crash Course.xlsx
ABCDEFGH
1First NameLast NameAddress 1City Email AddressPhone NoMobile NoEXTRA COLUMN
2TomJonestjones@xxx.comTjones
3JohnSmithjohnsmith@yyy.comJsmith
4RichardBransonRichardB@zzz.comRbranson
5
Sheet2
 
Upvote 0
I meant to add and an attempt to talk you through it.

At this stage I will assume that the email address on your Parent sheet is to the left of the newly added Extra Column.
The Vlookup
=VLOOKUP(C4,Sheet2!$E$2:$H$4,4,FALSE)
breaks down like this
  1. C4
    1. C = the "email address" column on your child sheet
    2. 4 = the row number on which you put the formula
  2. Sheet2!$E$2:$H$4
    1. Sheet2 is the parent sheet
    2. E is the Email address column on the parent sheet
    3. H is at a minimum the Extra Column - it no problem to go past that column but you must at least inclde that column in your column range.
    4. 2 is the first row of the data
    5. 4 is the last row of the data
  3. the 4, is the relative column no of the extra column you are trying to get the data back from.
    in this example E is the furtherst left column and counted as 1, in my example the Extra column is H and counting from E being 1, H is column 4
  4. FALSE - this means exact match - stick with always using FALSE (0 can be used and also means false).
    You need to really understand how to use TRUE before trying to use it so and sadly its the default if you leave it out, so always put false.
When you get this working you will most likely want to get rid of the formula:
Save you spreadsheet first, then save it again with a different name ie v2. Copy the column with the formula and then paste special value the column back on to itself.
 
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,543
Members
449,316
Latest member
sravya

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