Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.)
Thank you lbendlin
Hi, @yyjp
You can configure it in the Report server web portal. Here are the specific steps:
With the above steps, your report will be updated every minute to get the latest data. Here are my test results:
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?
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
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);
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.
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?
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.