Auto Populate one table from another

PaulPlumridge

New Member
Joined
Jan 10, 2019
Messages
11
Good Morning
I hope you are all well. I'm looking for some help on on designing commission sheets for my sales team.
We have a master file for 2019 that lists every commission our company earns in roughly this format

Date / Month / Salesman / Invoice No / Customer / Comm £

Each day new deals get added as new lines on the bottom of the master data.

The sales guys have their own sheets for each month with the same headers as above - what i am looking is a way for their individual sheets to automatically update the data from the master file.
Is this even possible? if so what would the formula structure look like

Thank you for your help
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Thank you for your help.
I understand the theory here and think there is scope for this to work. What i am struggling with is i have a potentially 2000 line document for the master file but for each month an individual salesmans sheet with only 20 lines in.
So i want "John Smiths" sheet to populate with any time "John Smith" appears in the master file

What i need is the individuals sheet to return any line of theirs that appears in the master
Also it isnt seperate sheets on one file but in different files. does this complicate
 
Upvote 0
the below will work if for example you pull sales number from master sheet into sales agent sheet for arguments sake the sales agent name was in column e,

{=IFERROR(INDEX(MasterSheet!$A$2:$A$2000,SMALL(IF(MasterSheet!$E$2:$E$2000="John Smith",ROW(Workings!$A$2:$A$2000)-MIN(ROW(Workings!$A$2:$A$2000))+1),ROWS($A$2:A2))),"")}

you have to hit shift + ctrl and enter for the {} brackets to appear, when you drag this formula down you have hold Ctrl, put that in each cell in sheet 2 referencing which cell you want to add from master sheet as in the above if column A is date then it would pull that value in,
 
Upvote 0
Hi Excel Learner
I'm nearly there i appreciate your help so much.

This is the layout of my master file with which column is which. Below is the commission sheet and the blue text is populated by a drop down box and examples below.

How do i include in your formula to populate by account manager and by month





Date Paid OutAccount ManagerTeamLender Invoice NumberCustomer MonthType Commission
ABCDEFJanHI

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




Account ManagerTeamMonth
John Smith Blue Jan
Account ManagerTeamLender Invoice NumberCustomer Commission

<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
Hi again

I've almost got it working ignoring the month bit.
Using This formula

=IFERROR(INDEX('[2019 Sales Report.xlsx]Raw Data'!$F1:$F200,SMALL(IF('[2019 Sales Report.xlsx]Raw Data'!$B1:$B200=A5,ROW($C$5:$C$31)-MIN(ROW($C$5:$C$31))+1),ROWS($C$5:C5))),"")

2019 sales report = my master commission file
column F is the customer
Column B is the account manager

the range in my commission sheet i want the array to sit is rows 5-31

Now it isnt returning based on account manager but only whats in row 5 of my master data and the array wont drop down into any other lines?
 
Upvote 0
Hey, you have the value set at A5 so if you want to lock it to that cell make it look like $A$5 so its an absolute reference and not a relative one, (using the persons name might be easier for that also as I did in the original ="John Smith")

I am a little confused, in A you have date paid so on master sheet example so is that the name of the person or date?

can you tell me on commission sheet what the columns are, and on master sheet what the columns are as it looks confusing from your post,

on the commission sheet which columns from the master sheet are you trying to pull im eg Column A is account manager, column B is date etc,
 
Upvote 0
Hi Mate - thanks for replying

The columns are mostly the same but not in exactly the same columns





The top of the commission sheet is a drop down for each salesman. i want their sheets to populate for each line they appear in the master data file
 
Upvote 0
darnit i thought that would insert a picture

A B C D E F G H I
Date Paid OutAccount ManagerTeamLender Invoice NumberCustomer MonthType Commission B4 Introducer Fees
02/01/2019John SmithTelesalesBank 1101Customer 1JanLease£1,000.00
02/01/2019Jane DoeJuniorLender 2102Customer 2JanLoan£2,000.00
02/01/2019Alan JonesSeniorBroker 3103Customer 3JanHP£5,000.00

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


A B C D E Other columns are required
Account ManagerTeamLender Invoice NumberCustomer
John SmithTelesales
John SmithTelesales
John SmithTelesales

<colgroup><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
hey, so ok if the top of the sheet is a drop down list of account manager and by selecting this value then the commission fields should populate,

so based on the assumption that eg Cell A1 is a drop down list and assuming the headers above (account manager, team, lender, invoice number etc) would be entered into A2, B2, C2 D2 etc.

so A3 = $A$1 (the drop down cell with absolute reference, and dragged down so all equal the account manager selected) ha I know its not set up like that probably just so we are on the same page regarding set up.

Your master sheet has a lot of data that's continuously added to so set a large range in the formula, if you want the team for account manager in column B, ("Team" is in B2 so data starts in B3)

{=IFERROR(INDEX('[2019 Sales Report.xlsx]Raw Data'!$C$2:$C$2000,SMALL(IF('[2019 Sales Report.xlsx]Raw Data'!$B$2:$B$2000=$A$1,ROW('[2019 Sales Report.xlsx]Raw Data'!$C$2:$C$2000)-MIN(ROW('[2019 Sales Report.xlsx]Raw Data'!$C$2:$C$2000))+1),ROWS($B$3:B3))),"")}
<strike></strike>
when you have that formula entered you hold ctrl + shift then press enter to get the { } brackets to appear (you will need them to work) and once the formula is entered and you want to drag it down press ctrl and hold as you drag down,

ok so the above formula is checking column C in the master sheet (team) and checking against column B in the master sheet (account manager) if values = $A$1, that is the reference at the top of the commission sheet I mentioned earlier where a drop down list is and where you select which agent you pick checked in column C (team) for each additional value where the chosen account manager corresponds to the value we want, then at the end in column B in commission sheet (team) as this formula is entered into cell B3

this formula worked across the different headers you want so for example in column C in commission (lender) you would paste in C3 which would pull in lender

{=IFERROR(INDEX('[2019 Sales Report.xlsx]Raw Data'!$D$2:$D$2000,SMALL(IF('[2019 Sales Report.xlsx]Raw Data'!$B$2:$B$2000=$A$1,ROW('[2019 Sales Report.xlsx]Raw Data'!$D$2:$D$2000)-MIN(ROW('[2019 Sales Report.xlsx]Raw Data'!$D$2:$D$2000))+1),ROWS($C$3:C3))),"")}
<strike></strike>


I hope that helps a little and makes some sense
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,559
Members
449,089
Latest member
Motoracer88

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