Save the row/record for the highest producing member for each team

Pumpk1n

Board Regular
Joined
Jan 31, 2017
Messages
86
Office Version
  1. 365
Platform
  1. Windows
In Access,I can sort by region by highest producer and save that record for further processing. I have to convert the Access DB functionality to excel. I know I can sort in excel, but how do I save/copy just those highest producers in a separate tab. Does excel or sql have a “first” function that I can use?
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
I might be off on your request but if I understand correctly, lets say your data is on Sheet1 and you want to copy the first 10? 20? 30? rows to Sheet2, correct?

If you always want to bring over the same number say the top 10 or top 20 then you could do so by first sorting Sheet1 so that the top 10 rows (11 with a header) are the results you want to copy.

Then in Sheet2 in cell A1 put in

Code:
=Sheet1!A1

Then copy it down A1 to A11 (A2 to A11 if not copying the header)
Then copy if over across your columns as needed.


Code:
=Sheet1!B1
=Sheet1!C1
=Sheet1!D1

etc.
 
Upvote 0

Forum statistics

Threads
1,215,537
Messages
6,125,386
Members
449,221
Latest member
DFCarter

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