Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a summary table as per below.
I have the MIN and MAX values of Avg Sales by Season.
I have created a measure to determine the value of Season that corresponds to the MAX value.
But I cannot work out how to create a measure to determine the value of Season that corresponds to the MIN value.
Any help would be greatly appreciated.
Solved! Go to Solution.
Hi @AussieClyde ,
Min season = CALCULATE(min('Table'[SEASON]),Filter(ALL('Table'),'Table'[aVG SALES]= MIN('Table'[aVG SALES])))
I used my own values, but put your table names and column names in and this will work
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!
Hi @AussieClyde ,
Min season = CALCULATE(min('Table'[SEASON]),Filter(ALL('Table'),'Table'[aVG SALES]= MIN('Table'[aVG SALES])))
I used my own values, but put your table names and column names in and this will work
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!