Forum Discussion
Anonymous
8 years agoNot applicable
SUMX CALCULATION TOTAL
Hello all, i am new in DAX so i hope you guys can help me out. i want to know how i can get into that amount of 1745 from column name TOTAL OPEN AMOUNT. The TOTAL OPEN AMOUNT is based on the sum ...
- 8 years ago
Hi,
Try this
=CALCULATE(SUM([Open Amount]),ALL(Data[CustomerID]))
Hope this helps.
Anonymous
8 years agoNot applicable
Hello Tachu,
Thank you for your input but i still dont solve the issue here. Maybe i have to give you another example. now there are two customerid and difference invoiceid. I would like to avoid that customerid 1 and 2 will get the same amount in the column TOTAL OPEN AMOUNT.
I need to get the following result for creating the TOTAL OPEN AMOUNT. Which dax formula should i now create?
Thanks in advanced
Ashish_Mathur
8 years agoSuper User
Hi,
Try this
=CALCULATE(SUM([Open Amount]),ALL(Data[CustomerID]))
Hope this helps.