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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
yyjp
Regular Visitor

I want to automatically update the report to the latest state at 1-minute intervals.

I would like to automatically "refresh" a specific report at 1-minute intervals.
Is there a way to configure something on the server side to achieve this?

(Not client-side JavaScript, etc.)

7 REPLIES 7
v-jianpeng-msft
Community Support
Community Support

Thank you lbendlin 

Hi, @yyjp 

You can configure it in the Report server web portal. Here are the specific steps:

vjianpengmsft_0-1727750088604.png

vjianpengmsft_1-1727750106536.png

vjianpengmsft_2-1727750239454.png

vjianpengmsft_3-1727750253051.png

vjianpengmsft_4-1727750281594.png

With the above steps, your report will be updated every minute to get the latest data. Here are my test results:

vjianpengmsft_5-1727750446211.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.

thank you.

 

I confirmed.

 

Is it possible to automatically update the report web page?

 

yyjp_0-1727763240085.png

 

Hi, @yyjp 

Power BI Report Server currently does not provide automatic page refresh. You can refresh the page by pressing F5 on the keyboard or using a browser plug-in.

Compare Power BI Report Server and the Power BI service - Power BI | Microsoft Learn

vjianpengmsft_0-1727768644877.png

Since a scheduled refresh is configured every minute, you only need to trigger the page refresh manually or through a Javascript script.

You can set up a page auto-reload in the F12 console using the following Javascript script:

setTimeout(() => {
  document.location.reload();
}, 3000);

vjianpengmsft_1-1727769334862.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.

thank you.

 

I checked the browser plugin JavaScript method.

 

Is there a way to configure equivalent content on the Report Server side?
(So ​​that there is no need to distribute browser plug-ins internally)

Hi, @yyjp 

Power BI Report Server itself does not support direct configuration of this page refresh. If you need to implement it, then you may need to involve re-modifying the underlying website building of Report Server and insert the plugin or script you want to distribute there.
I don't think it is an easy way to implement it. The best way is to set up a scheduled refresh and then install some browser extensions for your users to implement the page refresh.

 

 

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.

lbendlin
Super User
Super User

Please confirm that this is for Report Server, annd not for Power BI Service.

 

Consider using APR.  https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-automatic-page-refresh

Make sure your admins are ok with the frequency.

Thank you for your reply.

 

I am aware of the following.

 

- Possible with Power BI Desktop
- Possible with Power BI Service (dashboard)
- Possible with JavaScript in Power BI Report Server client browser (implementation as below)
https://chromewebstore.google.com/detail/power-bi-rs-refresh/ofdbpkdfpkbdeehllfmpafeofnbcjnal

 

Is there a way to configure it on the server side of Power BI Report Server?

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors