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, i got the following problem:
We have purchase orders for materials, these are received little by little by the suppliers, so repeated rows of the same order are created as the materials are received as follows:
|Purchase order| | |product| | |quantity order| | |recibed| | |money| |
1 | wood | 30 | 10 | 100$ |
1 | wood | 30 | 20 | 100$ |
2 | door | 20 | 20 | 50$ |
3 | window | 15 | 10 | 300$ |
3 | window | 15 | 5 | 300$ |
How can I sum the amount of money without repeating the amounts depending on the purchase order?
Solved! Go to Solution.
Measure = CALCULATE(SUMX(VALUES(tbl[|money|]),tbl[|money|]),ALL(tbl))
@JuanPabloCarr what is the desired end goal based on the sample data
i need a measure to sum 450 (1wood + 1door + 1windows) and not 850 (2wood + 1door +2windows)
Measure = CALCULATE(SUMX(VALUES(tbl[|money|]),tbl[|money|]),ALL(tbl))
That works for me, thanks!
try like:
it isnt working, the code return the same value as if i sum all the values of the column "Money", counting the repeated ones
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
30 | |
13 | |
11 | |
9 | |
6 |