Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
10 | |
8 |