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 need assistance in creating a calculated column that will show the minimum value (Location Number) based on multiple criteria (Category Number, Country, Location Number). I am hoping I can also see the minimum numerical value when a row has no value.
So for each Category/Country combo, the calculated column returns back the minimum Location Number, I need it to provide the minimum location number in the event the Location Number is blank.
Solved! Go to Solution.
Thank you very much, the dax for the column works in your PBIX, but when I try to employ what you wrote to my work pbix, the calculated column partially works. Confusing since I see that it works in what you provided.
I ended up using DAX like this below in my work pbix and I get the same result in your dax and works completely in my work pbix.
Hi, I am not sure if I understood you question correctly, but please check the below picture and the attached pbix file.
Expected result CC =
CALCULATE (
MIN ( Data[Location Number] ),
INDEX (
1,
FILTER (
SUMMARIZE ( Data, Data[Category Number], Data[Country], Data[Location Number] ),
Data[Location Number] <> BLANK ()
),
ORDERBY ( Data[Location Number], ASC ),
DEFAULT,
PARTITIONBY ( Data[Category Number], Data[Country] )
)
)
Thank you very much, the dax for the column works in your PBIX, but when I try to employ what you wrote to my work pbix, the calculated column partially works. Confusing since I see that it works in what you provided.
I ended up using DAX like this below in my work pbix and I get the same result in your dax and works completely in my work pbix.