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.
Good morning,
I am totally stuck!
I have a table of values for which I have created a measure.
what I need to do is to create a new measure such that it returns only the worst performer.
i.e. Measure = "ModalityValue" where Value = Worst(Min) Value".
in the example above I would want it to return "Non-Obstetric Ultrasound".
Does anyone have any ideas please?
Kind regards
Steve
PS the measure value 94K is created from
VariationActAv min per Modality =
MINX(
KEEPFILTERS(VALUES('Modalities'[Modality])),
CALCULATE([VariationActAv])
)
Solved! Go to Solution.
P.S. In the measure you wrote, you don't need KEEPFILTERS on top of VALUES, becasue VALUES already keeping all the filters, and you also didn't need to write calculate as a measure reference already get's an implicit calculate around it.
P.S. In the measure you wrote, you don't need KEEPFILTERS on top of VALUES, becasue VALUES already keeping all the filters, and you also didn't need to write calculate as a measure reference already get's an implicit calculate around it.
Perfect - thank you so much - and thank you for the tips.