Forum Discussion

gritman's avatar
gritman
Frequent Visitor
6 years ago
Solved

Multiple Reports from a single Template (Power Bi Report Builder)

Hello all, 

 

I've started using the "Power Bi Report Builder" for Pagenated Reports.  Not sure if this is the correct location to ask but here goes: -

 

I have a data source which contains multiple clients; example below: -

Client, Date, Amount

Client A, 1st Oct, 100

Client B, 5th Oct, 100

Client B, 31st Oct, 100

Client C, 1st Oct, 100

Client C, 5th Oct, 100

Client C, 31st Oct, 100

 

I have a report tempalte: -

Client, Sum of Sales

 

Currently it produces a single report with all 3 clients in there: -

Client, Sum of Sales

Client A, 100

Client B, 200

Client C, 300

 

But what I would like is 3 seperate reports - one for each client: -

Client, Sum of Sales

Client A, 100

 

Client, Sum of Sales

Client B, 200

 

Client, Sum of Sales

Client C, 300

 

I would like to schedule this to run each day so I don't want to have to manually run and input the client name and run on demand.

 

Does anyone know how to do this please?

 

Thanks

 

Andrew

  • Create single paginated report, with input parameter "Client", which filter data only to selected client.

    Create three scheduleds of this report, in each schedule you can specify Clinet parameter value.

     

    Additional option (more flexibile) is use Data driven subcriptions, but i'm not sure if are avaliable on PBIRS (i'm using on dedicated SSRS for paginated reports)

6 Replies

      • josef78's avatar
        josef78
        Icon for Memorable Member rankMemorable Member

        Create single paginated report, with input parameter "Client", which filter data only to selected client.

        Create three scheduleds of this report, in each schedule you can specify Clinet parameter value.

         

        Additional option (more flexibile) is use Data driven subcriptions, but i'm not sure if are avaliable on PBIRS (i'm using on dedicated SSRS for paginated reports)

  • Greg_Deckler's avatar
    Greg_Deckler
    Icon for Community Champion rankCommunity Champion

    gritman - You could use RLS but this will disable subscriptions. Are you wanting to send emails of the reports to people or are you just wanting them to connect and view the report?

    • gritman's avatar
      gritman
      Frequent Visitor

      Hi Greg_Deckler

       

      The ultimate goal is to send emails to clients with the the reports as attachments.

       

      However my company is developing an in house tool for distribution - so what I ideally need to do is save the reports somewhere with a format like the below; the distribution tool will pick those files up, look-up the email addresses for each client, and send the emails.

       

      So for Power Bi Report Builder - what I need, in this example, is 3 seperate reports each with a different names.

      ClientA_Oct.xls

      ClientB_Oct.xls

      ClientC_Oct.xls

       

      Thanks