Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Paginated Report passing parameter in Union Query

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

 

TypeValue
a10
b20
c30

 

I want to create a dataset like this. (creating a dummy type called other and passing the total value)

 

TypeValue
a10
b20
c30
Other60

 

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

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

You can try formula like below:

Table 2 =
VAR row_ =
    ROW ( "Type", "Other", "Value", SUM ( 'Table'[Value] ) )
RETURN
    UNION ( 'Table', row_ )

vhenrykmstf_0-1656929158204.png

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.

View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

You can try formula like below:

Table 2 =
VAR row_ =
    ROW ( "Type", "Other", "Value", SUM ( 'Table'[Value] ) )
RETURN
    UNION ( 'Table', row_ )

vhenrykmstf_0-1656929158204.png

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
Not applicable

Thanks a lot, that works

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors