How to automatically update a sheet with data from the Main Sheet containing identical cells

JacquesDB

New Member
Joined
Jul 12, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Good day

I have a main sheet where I update with wildlife breeding information. We have several fathers (each with their own sheet based on their names) and each father have several offspring past and yet to be born.

Each offspring gets a tag number, gender, date etc.

All this information is typed on the main sheet, from here I want the information linked to another sheet so that it pulls the information through based on the fathers name to that fathers respective sheet.

I have tried index/match but because one father has multiple offspring with different tags, it keeps on only pulling through the first tag it finds to all the other cells, (I could be doing it wrong or missing something), and VLookup seems to be doing the same, where it only matches the first row it finds on the main sheet and allocates that one value to all the rows in the fathers' respective sheets, ignoring the data following.

I hope that I have explained this good enough, if not, please feel free to ask or correct me.

Much appreciated in advance

Kind Regards
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Hi JacquesDB,

You could use SMALL or the SMALL option of AGGREGATE to fetch 1st match, 2nd match, etc.

So if this is your Master sheet

JacquesDB.xlsx
ABCD
1Master
2
3FatherOffspring TagGenderBirthdate
4OthelloButchM01-Jan-20
5MercySarahF02-Feb-20
6OthelloBillM03-Mar-20
7TimTomM05-May-21
8OthelloNateM03-Mar-21
9
Master


Your Father sheet could be

JacquesDB.xlsx
ABCD
1OthelloOffspringGenderBirthdate
2ButchM01-Jan-20
3BillM03-Mar-20
4NateM03-Mar-21
5
6
7
Othello
Cell Formulas
RangeFormula
B2:D4B2=IFERROR(INDEX(Master!B$4:B$9999,AGGREGATE(15,6,ROW(Master!$A$4:$A$9999)-ROW(Master!$A$3)/(Master!$A$4:$A$9999=$A$1),ROW()-ROW($B$1))),"")
 
Upvote 0

Forum statistics

Threads
1,214,864
Messages
6,121,986
Members
449,058
Latest member
oculus

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