Locate highest and lowest showing values in numbers and text

Caly

Board Regular
Joined
Jul 19, 2015
Messages
159
Office Version
  1. 365
  2. 2013
  3. 2011
  4. 2010
  5. 2007
Platform
  1. Windows
Hello I have a table showing items in rows and sizes in column headers along with a breakout for quantities and sales. I’m trying to show a summary where a formula will have a summary to show the highest seller, second, third and so on all the way to the lowest.

Is there a max or min formula for this or an index match? I’m confused and stumped with this to do a formula. Thank you to all in advance.

Below is the data
TypeQty SQty MQty LSales SSales MSales L
Blue605774.5611.1223.45
Yellow3043563.2510.9816.55
 
Apologies I just am not sure what the expression is referring to for the “t” portion of the formula
 
Upvote 0

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
The t is a variable that holds the result of the red calculation below. That result is then substituted twice in place of the blue 't's in the final calculation on the right.

=LET(t,TEXTSPLIT(TEXTJOIN("|",,TOCOL(A2:A3&" "&B2:D3&" "&B1:D1&" "&E2:G3))," ","|"),CHOOSECOLS(SORT(IFERROR(t+0,t),2,-1),1,4,2,5))

More information on the LET function here: LET function - Microsoft Support
 
Upvote 0

Forum statistics

Threads
1,215,128
Messages
6,123,206
Members
449,090
Latest member
bes000

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