Forum Discussion
Issue when tally Total in a column using DAX
- Anonymous2 years ago
Hi tony-G_2020 ,
Try breaking it into two steps. That should work.
New table:Table = VAR _Result = CALCULATETABLE ( SUMMARIZE ( FILTER ( FI_Details, FI_Details[Framework] = "A" && FI_Details[Membership_Capacity] = "IA" && FI_Details[Status] = "Active" && FI_Details[startMergedDate] = "-" && FI_Details[startMergingDate] = "-" && FI_Details[startInactiveDate] = "-" && FI_Details[period] = "JUL22 - JUN23" ), FI_Details[Code], FI_Details[period], "Total VOL", CALCULATE ( [Total VOL] ) ) ) RETURN _ResultNew calculated column:
Indusrtry Total VOL = SUM('Table'[Total VOL])Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!How to get your questions answered quickly -- How to provide sample data in the Power BI Forum -- China Power BI User Group
Because in the statement bellow, you are clearing all filter using ALL function.
"Indusrtry Total VOL", CALCULATE( [Total VOL], all(FI_Details) )"
If this help you, mark this answer as solution
I removed All functions but I still not getting 26,967,912,224. Instead, I got the identical figure as in "Total VOL" column. I want the "Total VOL" aggregation in the "Industry Total VOL" column.