Forum Discussion
SDunning
Jan 24, 2024Copper Contributor
Referencing cell data based on another cell
Hello, I have data in a table that has different amounts and prices. I would like to reference this data range to pull who has the largest inventory and then list that store's price. So...
- Jan 25, 2024
SDunning Using SORTBY()
• Formula used in cell E2 using Structured References:
=@SORTBY(Data[Price],Data[Inventory],-1)Or without using Tables:
=@SORTBY(C2:C6,B2:B6,-1)
SDunning
Jan 25, 2024Copper Contributor
Mayukh_Bhattacharya Thanks!
Mayukh_Bhattacharya
Jan 25, 2024Iron Contributor
Glad to know it worked! Thank you very much!