The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have multiple rows with the same order number but different products ship at different times. How do I get the total sale amount to be on the each row of the same order number? My goal is to have the $16 show on each row.
Order Date Amount Total
1 1/1 $5 $16
1 1/3 $7 $16
1 1/5 $4 $16
Solved! Go to Solution.
Try the following:
Total = CALCULATE(SUM([Amount]), ALLEXCEPT(Table, [Order]))
Try the following:
Total = CALCULATE(SUM([Amount]), ALLEXCEPT(Table, [Order]))
User | Count |
---|---|
65 | |
62 | |
59 | |
53 | |
28 |
User | Count |
---|---|
181 | |
82 | |
67 | |
47 | |
44 |