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
Hi,
I used to add a column in the PowerQuery Editor:
Lenght | Width | Hight | Weight | Total |
1 | 0 | 1 | 1 | 1 |
1 | 0 | 1 | 0 | 1 |
1 | 1 | 0 | 1 | 1 |
1 | 1 | 1 | 1 | 1 |
1 | 1 | 0 | 1 | 1 |
Solved! Go to Solution.
Hi @lisannegesch ,
Overtime is not mentioned in your data, you can mark the answer to this post as a solution and republish the post on how to add up this overtime, thanks in advance.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @lisannegesch ,
For large amounts of data, measures have a better performance experience than calculated columns.
So we can create a measure.
Measure =
var len=MAX('Table'[Lenght])
var wid=MAX('Table'[Width])
var hig=MAX('Table'[Hight])
var wei=MAX('Table'[Weight])
return IF(len = 1 || wid=1 || hig=1 || wei=1,1,0)
Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Dear Neeko Tang,
Thanks for your response. This helped al lot. And it does show the expected result. But is it also possible to sum this overtime? In the table I tried to sum all the results but with this measure that's not possible (which I could've forseen but didn't think through).
Hi @lisannegesch ,
Overtime is not mentioned in your data, you can mark the answer to this post as a solution and republish the post on how to add up this overtime, thanks in advance.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 92 | |
| 69 | |
| 50 | |
| 40 | |
| 38 |