Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello community,
is it possible to add aggregated rows for all existing columns in a table within the query editor?
In below image I want to aggregate based on YearMonth and Company so that a new "company" ("A+B") is created that holds the sum of all existing companies for all columns.
The reason I need to do this is because I have a budget table with the company name "A+B" and its values.
In order to compare actual and budget I need this company in my actual table.
If there are other options with DAX or so please feel free to share.
Thank you.
Solved! Go to Solution.
So, you could create a second query, reference your first query. Filter to just A and B. Create a column = "A+B". Now do a Group By to group by Date and your new column, appropriate aggregations. Now add an Append step and Append your original query.
DAX would be similar using SUMMARIZE/GROUPBY and UNION.
Hi @tonyclifton ,
We can create a calculated table to meet your requirement:
Actual =
UNION (
'Table',
SELECTCOLUMNS (
ADDCOLUMNS (
CROSSJOIN (
DISTINCT ( 'Table'[YearMonth] ),
FILTER (
CROSSJOIN (
SELECTCOLUMNS ( DISTINCT ( 'Table'[Company] ), "C1", [Company] ),
SELECTCOLUMNS ( DISTINCT ( 'Table'[Company] ), "C2", [Company] )
),
[C1] < [C2]
)
),
"Value1",
VAR co1 = [C1]
VAR co2 = [C2]
VAR ym = [YearMonth]
RETURN
CALCULATE (
SUM ( 'Table'[Value1] ),
'Table'[Company] IN { co1, co2 },
'Table'[YearMonth] = ym
),
"Value2",
VAR co1 = [C1]
VAR co2 = [C2]
VAR ym = [YearMonth]
RETURN
CALCULATE (
SUM ( 'Table'[Value2] ),
'Table'[Company] IN { co1, co2 },
'Table'[YearMonth] = ym
),
"Value3",
VAR co1 = [C1]
VAR co2 = [C2]
VAR ym = [YearMonth]
RETURN
CALCULATE (
SUM ( 'Table'[Value3] ),
'Table'[Company] IN { co1, co2 },
'Table'[YearMonth] = ym
)
),
"YearMonth", [YearMonth],
"Company", [C1] & "+" & [C2],
"Value1", [Value1],
"Value2", [Value2],
"Value3", [Value3]
)
)
By the way, PBIX file as attached.
Best regards,
Thanks for all the suggestions. I went one step "back" and unpivoted the table in order to create (reference) a new table like @Mariusz suggested so that I could create a sum column since there are many Value columns that I don't want to type in a query.
I think this works fine now.
Hi @tonyclifton
Sure if you want to use your approach, please provide a sample table that can be copied.
You can always look at the DAX solution for Budget patterns below
https://www.daxpatterns.com/budget-patterns/
But I imagine that you would need an extra column that creates a hierarchy, like
column | extra column |
A | AB |
B | AB |
C | C |
So, you could create a second query, reference your first query. Filter to just A and B. Create a column = "A+B". Now do a Group By to group by Date and your new column, appropriate aggregations. Now add an Append step and Append your original query.
DAX would be similar using SUMMARIZE/GROUPBY and UNION.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
68 | |
53 | |
39 | |
33 |
User | Count |
---|---|
70 | |
63 | |
57 | |
49 | |
46 |