Forum Discussion
Anonymous
4 years agoNot 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...
- 4 years ago
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.
v-henryk-mstf
4 years agoCommunity Support
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.
- Anonymous4 years agoNot applicable
Thanks a lot, that works