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.
I have table with 10.000 rows, and I need to calculate ammount:
iop1001/iop5628 +iop5885+iop9000 , how I do that? That measures then is affected by dimensions.
iop amount
1001 252
1002 323
1003 525
1004 787
...
10000 969
Solved! Go to Solution.
Hi, @OliJov
You can try the following methods.
Measure =
Var _iop1001=CALCULATE(SUM('Table'[amount]),FILTER(ALL('Table'),[iop]=1001))
Var _iop5885=CALCULATE(SUM('Table'[amount]),FILTER(ALL('Table'),[iop]=5885))
Var _iop9000=CALCULATE(SUM('Table'[amount]),FILTER(ALL('Table'),[iop]=9000))
Return
_iop1001+_iop5885+_iop9000
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @OliJov
You can try the following methods.
Measure =
Var _iop1001=CALCULATE(SUM('Table'[amount]),FILTER(ALL('Table'),[iop]=1001))
Var _iop5885=CALCULATE(SUM('Table'[amount]),FILTER(ALL('Table'),[iop]=5885))
Var _iop9000=CALCULATE(SUM('Table'[amount]),FILTER(ALL('Table'),[iop]=9000))
Return
_iop1001+_iop5885+_iop9000
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |