Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
Hi Friends,
I am building a Paginated reporting sourced from PowerBI dataset. I am trying to union to create a sepearte entry for total. The query works fine if I pass parameter in only 1 table i.e the 1st summarize. If I try to pass parameter in the second summarize, it doenst work. Anyone has an idea hot to make this work?
To make it simple, assume this is data
Type | Value |
a | 10 |
b | 20 |
c | 30 |
I want to create a dataset like this. (creating a dummy type called other and passing the total value)
Type | Value |
a | 10 |
b | 20 |
c | 30 |
Other | 60 |
Query: (Group Name is the column I am trying to filter for)
EVALUATE
UNION(
SUMMARIZECOLUMNS(
'REF_DETAILS'[Type],
FILTER(VALUES(REF_MAPPING[GroupName]),REF_MAPPING[GroupName] = @PR1),
"Value", [Value], )
,
SUMMARIZECOLUMNS(
"ColumnTitle","Other",
FILTER(VALUES(REF_MAPPING[GroupName]),REF_MAPPING[GroupName] = @PR2),
"Value", [Value] )
)
Thanks
Mohinder
Solved! Go to Solution.
Hi @Anonymous ,
You can try formula like below:
Table 2 =
VAR row_ =
ROW ( "Type", "Other", "Value", SUM ( 'Table'[Value] ) )
RETURN
UNION ( 'Table', row_ )
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.
Hi @Anonymous ,
You can try formula like below:
Table 2 =
VAR row_ =
ROW ( "Type", "Other", "Value", SUM ( 'Table'[Value] ) )
RETURN
UNION ( 'Table', row_ )
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.
Thanks a lot, that works
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
83 | |
61 | |
45 | |
41 | |
39 |