Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

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...
  • v-henryk-mstf's avatar
    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.