Lowest value in columns and List of lowest values

hpernaf

New Member
Joined
Jul 1, 2019
Messages
27
Hi everyone.

I have a list of products with prices from 4 different markets.

I need a formula that when I select a product in H3, the value of that product in H4 is shown and in H5 the respective market that contains this smaller product is shown.

1597524266907.png


In another spreadsheet, would it be possible to export the lowest prices for each product and the respective markets where these products are sold? Something like the image below:

1597524380205.png


Attached I am leaving the spreadsheet. In case anyone can help me, I will be very grateful.

 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
you can try Power Query
Rich (BB code):
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    UOC = Table.UnpivotOtherColumns(Source, {"Product"}, "Attribute", "Value")
in
    UOC
then Pivot Table
ProductMarket 1Market 2Market 3Market 4ProductWatermelon
Grape$2.00$2.50$3.00$3.50
Apple$1.00$1.20$1.40$2.50MarketMin of Value
Banana$1.00$4.00$3.00$3.00Market 13
Orange$3.00$3.00$1.00$2.30Market 21
Watermelon$3.00$1.00$1.70$1.80Market 31.7
Market 41.8


 
Upvote 0
Thank you for your reply
Any way to do this without using Power Query?
I'm using Excel 2013 and I don't have access to Power Query
 
Upvote 0

Forum statistics

Threads
1,215,030
Messages
6,122,762
Members
449,095
Latest member
m_smith_solihull

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