Forum Discussion
table doesnt sum correctly
- 2 years ago
Hi munchkin666
Total in power bi doesn't summarize the visible values automatically.
You need to fix it "manually".Please refer to the linked tutorials :
https://www.youtube.com/watch?v=yw0QHu9V4UQ&t=773shttps://www.youtube.com/watch?v=O6qUiICLxLg
I answered a few days ago to question with a similar scenario including a sample pbix You can take a look here:
There is also the idea of Greg_Deckler about this issue, please vote for it :https://ideas.fabric.microsoft.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly - 2 years ago
Hi munchkin666
Your scenario is much more complex than regular total problems because you want to include values of groups that don't in the filtered period.
You will need 2 measures :
1. Kind of prepartionTotalValue2022 =VAR GroupsIn2022 = SUMMARIZE(FILTER('table', YEAR('table'[Date]) = 2022), 'table'[Group])VAR AllGroups = VALUES('table'[Group])VAR GroupsNotIn2022 = EXCEPT(AllGroups, GroupsIn2022)VAR ResultTable =ADDCOLUMNS(AllGroups,"Value2022",IF(COUNTROWS(FILTER(GroupsIn2022, 'table'[Group] = [Group])) > 0,IF([Group] = "Other", 50, SUMX(FILTER('table', 'table'[Group] = [Group] && YEAR('table'[Date]) = 2022), 'table'[Value])/12),50))RETURNSUMX(ResultTable, [Value2022])2. To put on the table :
TotalValueByGroup = SUMX(SUMMARIZE('table', 'table'[Group], "TotalValue", [TotalValue2022]), [TotalValue])Don't ask how I did it; I'm not sure that I can explain, and luck did its work here too. 🙂
Pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi munchkin666
Total in power bi doesn't summarize the visible values automatically.
You need to fix it "manually".Please refer to the linked tutorials :
https://www.youtube.com/watch?v=yw0QHu9V4UQ&t=773s
https://www.youtube.com/watch?v=O6qUiICLxLg
I answered a few days ago to question with a similar scenario including a sample pbix You can take a look here:
There is also the idea of Greg_Deckler about this issue, please vote for it :https://ideas.fabric.microsoft.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
- munchkin6662 years agoHelper II
- Ritaf19832 years agoSuper User
Hi munchkin666
Please share some data to work with.Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523- munchkin6662 years agoHelper II
Ritaf1983 I am unable to add it, it keeps coming bakc with "your post has been changed because invalid html was found in the message body. the invalid html has been removed. please review the message and submit the message when you are satisfied.". I have tried to split the table, but its too big. Basically, I have lets say 3 groups:A,B,C. Group B didint have any data for 2022, but started to receive it in 2023. I did a calullation IF(ISBLANK(Result),50, Result/12). But for some reasons, PowerBI doesnt want to sum it in the totals. It only sums up A and B, although C (50) is listed there 😞