Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.
User | Count |
---|---|
64 | |
55 | |
46 | |
31 | |
31 |
User | Count |
---|---|
84 | |
74 | |
49 | |
48 | |
41 |