Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.