Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Community,
I have a data set that looks like this:
SKU - Weight in Kg
SKU1 - 50
SKU2 - 100
SKU3 - 150
SKU4 - 200
I have created a filter to select only weights between 95 and 160.
So, SKU2 and SKU 3 will be returned.
Now, I want to create a measured column that will find out the minimum of weight and find out the difference in weight.
For example, It should look like this
SKU - Weight - New Measure Column
SKU 2 - 100 - 100-100=0
SKU 3 - 150 - 150-100=50
Currently, when I do the measure, It is giving this result
SKU - Weight - New Measure Column
SKU 2 - 100 - 100-100=0
SKU 3 - 150 - 150-150=0
Measure column = min(Weight)
Please help
Solved! Go to Solution.
Sorry, I was a bit off:
Measure 5 = MAX([Weight]) - MINX(ALLSELECTED('Table 8'),[Weight])
See Page 5 and Table 8 of attached.
You want a MINX coupled with an ALLEXCEPT('Table'[SKU])
Sorry, I was a bit off:
Measure 5 = MAX([Weight]) - MINX(ALLSELECTED('Table 8'),[Weight])
See Page 5 and Table 8 of attached.
It worked. Thanks
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |