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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
sivakar7
Regular Visitor

How to pass a parameter from Angular powerBI client to report to get the subset of data

Hi,

We have Embeded the PowerBI report in Angular application using PowerBI Client and AppOwns data. Now I need to pass a parameter from Angular UI for example Id=100 to the report to get only those matching rows. I have tested few examples nothing worked. Pls point me to any article or example.

 

Thanks in advance.

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @sivakar7 ,

Please review the following links, hope they can help you.

How to embed Power BI content in an Angular app | Microsoft Learn

Use filters in a Power BI embedded analytics report | Microsoft Learn

In addition, you can follow the steps below to get it:

1. Ensure you have the Power BI Client installed in your Angular project.

 

 npm install powerbi-client

 

2. Embed the report with the filters

 

import { Component, OnInit } from '@angular/core';
   import * as pbi from 'powerbi-client';
   @Component({
     selector: 'app-powerbi-report',
     templateUrl: './powerbi-report.component.html',
     styleUrls: ['./powerbi-report.component.css']
   })
   export class PowerbiReportComponent implements OnInit {

     constructor() {}

     ngOnInit() {
       this.embedReport();
     }

     embedReport() {
       const embedContainer = document.getElementById('embedContainer');

       const reportConfig = {
         type: 'report',
         tokenType: pbi.models.TokenType.Embed,
         accessToken: 'YOUR_EMBED_TOKEN',
         embedUrl: 'YOUR_EMBED_URL',
         id: 'YOUR_REPORT_ID',
         permissions: pbi.models.Permissions.All,
         settings: {
           filterPaneEnabled: false,
           navContentPaneEnabled: false
         }
       };

       const powerbi = new pbi.service.Service(
         pbi.factories.hpmFactory,
         pbi.factories.wpmpFactory,
         pbi.factories.routerFactory
       );

       const report = powerbi.embed(embedContainer, reportConfig);

       // Apply a filter when the report is loaded
       report.on('loaded', () => {
         this.applyFilter(report, 100); // Pass the ID or parameter you need
       });
     }

     applyFilter(report, id) {
       const filter = {
         $schema: 'http://powerbi.com/product/schema#basic',
         target: {
           table: 'YourTableName',
           column: 'YourColumnName'
         },
         operator: 'In',
         values: [id]
       };

       report.updateFilters(pbi.models.FiltersOperations.Replace, [filter])
         .then(result => {
           console.log('Filter applied successfully');
         })
         .catch(error => {
           console.error('Error applying filter', error);
         });
     }
   }

 

Best Regards

Community Support Team _ Rena
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

3 REPLIES 3
sivakar7
Regular Visitor

HIi@v-yiruan-msft ,

 

Thank you. Control filters worked for my requirement.

sivakar7
Regular Visitor

Thank you @v-yiruan-msft . Control report filters(Use filters in a Power BI embedded analytics report | Microsoft Learn) helped my requirement.

v-yiruan-msft
Community Support
Community Support

Hi @sivakar7 ,

Please review the following links, hope they can help you.

How to embed Power BI content in an Angular app | Microsoft Learn

Use filters in a Power BI embedded analytics report | Microsoft Learn

In addition, you can follow the steps below to get it:

1. Ensure you have the Power BI Client installed in your Angular project.

 

 npm install powerbi-client

 

2. Embed the report with the filters

 

import { Component, OnInit } from '@angular/core';
   import * as pbi from 'powerbi-client';
   @Component({
     selector: 'app-powerbi-report',
     templateUrl: './powerbi-report.component.html',
     styleUrls: ['./powerbi-report.component.css']
   })
   export class PowerbiReportComponent implements OnInit {

     constructor() {}

     ngOnInit() {
       this.embedReport();
     }

     embedReport() {
       const embedContainer = document.getElementById('embedContainer');

       const reportConfig = {
         type: 'report',
         tokenType: pbi.models.TokenType.Embed,
         accessToken: 'YOUR_EMBED_TOKEN',
         embedUrl: 'YOUR_EMBED_URL',
         id: 'YOUR_REPORT_ID',
         permissions: pbi.models.Permissions.All,
         settings: {
           filterPaneEnabled: false,
           navContentPaneEnabled: false
         }
       };

       const powerbi = new pbi.service.Service(
         pbi.factories.hpmFactory,
         pbi.factories.wpmpFactory,
         pbi.factories.routerFactory
       );

       const report = powerbi.embed(embedContainer, reportConfig);

       // Apply a filter when the report is loaded
       report.on('loaded', () => {
         this.applyFilter(report, 100); // Pass the ID or parameter you need
       });
     }

     applyFilter(report, id) {
       const filter = {
         $schema: 'http://powerbi.com/product/schema#basic',
         target: {
           table: 'YourTableName',
           column: 'YourColumnName'
         },
         operator: 'In',
         values: [id]
       };

       report.updateFilters(pbi.models.FiltersOperations.Replace, [filter])
         .then(result => {
           console.log('Filter applied successfully');
         })
         .catch(error => {
           console.error('Error applying filter', error);
         });
     }
   }

 

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.