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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
WOLFIE
Helper I
Helper I

Pass user login and filtered value to another webpage from Power BI service

Hi

 

Is it possible to pass a user login and filtered value like an ID to another webpage, please?

I need something like a button that will forward the user to another webpage using the user login which will then prompt the SSO and filter the page by the ID that will be passed from the Power BI report.

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, @WOLFIE 

We were able to select based on one report and then click the report button to jump to another report and keep the filter. Here's how to demonstrate how to do it:

First, there are the following reports that need to be redirected:

vjianpengmsft_0-1721878904888.png

vjianpengmsft_5-1721879499589.png

 

We need to copy the URL of this report:

https://app.powerbi.com/groups/xxxx/reports/xxx/xxx

vjianpengmsft_1-1721879062694.png

Design a report with a button and a column that you want to pass parameters to another web page, in my case, I want to pass Product, so the sample data is as follows:

vjianpengmsft_2-1721879186740.png

Create a slicer and button:

vjianpengmsft_3-1721879319825.png

Create a new measure using the following DAX expression:

URL = "https://app.powerbi.com/groups/xxxx/reports/xxx/xxx?filter=Table/Product eq " &"'"&SELECTEDVALUE('Table'[Proudct])&"'"

The filter is followed by the table/column name of your other report

vjianpengmsft_4-1721879464989.png

eq is a fixed spelling, and selectedvalue returns the current slicer option, which is passed to the URL measure. Next, we apply this measure to the button:

vjianpengmsft_6-1721879678278.png

vjianpengmsft_7-1721879705291.png

Publish the report to Power BI Service. Here are the results:

When I select Apples in the slicer, then clicking on the button jumps to another report and retains the parameters selected by the slicer:

vjianpengmsft_8-1721879771283.png

vjianpengmsft_9-1721879886455.png

The above is mainly used in the URL filtering report. You can learn how this feature works at the links below:

Filter a report using query string parameters in the URL - Power BI | Microsoft Learn

vjianpengmsft_10-1721879975987.png

 

 

Best Regards

Jianpeng Li

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

Hi, @WOLFIE 

We were able to select based on one report and then click the report button to jump to another report and keep the filter. Here's how to demonstrate how to do it:

First, there are the following reports that need to be redirected:

vjianpengmsft_0-1721878904888.png

vjianpengmsft_5-1721879499589.png

 

We need to copy the URL of this report:

https://app.powerbi.com/groups/xxxx/reports/xxx/xxx

vjianpengmsft_1-1721879062694.png

Design a report with a button and a column that you want to pass parameters to another web page, in my case, I want to pass Product, so the sample data is as follows:

vjianpengmsft_2-1721879186740.png

Create a slicer and button:

vjianpengmsft_3-1721879319825.png

Create a new measure using the following DAX expression:

URL = "https://app.powerbi.com/groups/xxxx/reports/xxx/xxx?filter=Table/Product eq " &"'"&SELECTEDVALUE('Table'[Proudct])&"'"

The filter is followed by the table/column name of your other report

vjianpengmsft_4-1721879464989.png

eq is a fixed spelling, and selectedvalue returns the current slicer option, which is passed to the URL measure. Next, we apply this measure to the button:

vjianpengmsft_6-1721879678278.png

vjianpengmsft_7-1721879705291.png

Publish the report to Power BI Service. Here are the results:

When I select Apples in the slicer, then clicking on the button jumps to another report and retains the parameters selected by the slicer:

vjianpengmsft_8-1721879771283.png

vjianpengmsft_9-1721879886455.png

The above is mainly used in the URL filtering report. You can learn how this feature works at the links below:

Filter a report using query string parameters in the URL - Power BI | Microsoft Learn

vjianpengmsft_10-1721879975987.png

 

 

Best Regards

Jianpeng Li

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

 

 

 

 

 

Thanks 🙂 I think this is close to what I need! I will give it a go!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors