Forum Discussion
Anonymous
5 years agoNot applicable
DAX
Hi, I need to calculate sum of $ amounts in column X based on condition GroupBy in column Y, Z. Ex: X Y Z $5 A IND $6 A US $7 B US $8 ...
- 4 years ago
Hi Anonymous ,
According to your description, create the following virtual table.
Out_result = SUMMARIZE ( ABC, ABC[GL Description], "A", IF ( NOT ISBLANK ( CALCULATE ( SUM ( ABC[YTD] ), FILTER ( ALL ( ABC ), MAX ( ABC[GL Description] ) = ABC[GL Description] && ABC[Group] = "CA" ) ) ), CALCULATE ( SUM ( ABC[YTD] ), FILTER ( ALL ( ABC ), MAX ( ABC[GL Description] ) = ABC[GL Description] && ABC[Group] = "CA" ) ), 0 ) )
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
5 years agoNot applicable
Hi,
The expected output is:
Sum of column X, groupby rows in column Y and Z
Thank you!
ryan_mayu
5 years agoSuper User
Anonymous
is the sample data or expected output in your first post? It does not like the Y and Z can be grouped.
maybe you can try
calculate(sum(x), allexcept(table, y,z))