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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
gaurangross
Regular Visitor

Slicer values not refreshing in import mode

We are using Power BI embedded service with import mode. We use power bi API to publish and refresh dataset. After data refresh through API, slicer still shows old or previous value in dropdown. This is show stopper for us as slicer shows old value which confused user. 

 

Any one has any ideas about how to resolve this issue?

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

Hi @gaurangross ,

 

If it is a report on Service that is not showing the latest data, please try refreshing the browser page or clearing the browser cache then reopen the report, which will clear the report's cache and show the latest data.


If it is an embedded report, based on my testing, when you refresh the dataset, the latest data is not immediately reflected in the embedded report. It is recommended that you run the following code for the embedded report after the dataset is refreshed and it will refresh the report to display the latest data.

 

// Refresh the displayed report
try {
    await report.refresh();
    console.log("Refreshed");
}
catch (errors) {
    console.log(errors);
}

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
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
v-kkf-msft
Community Support
Community Support

Hi @gaurangross ,

 

If it is a report on Service that is not showing the latest data, please try refreshing the browser page or clearing the browser cache then reopen the report, which will clear the report's cache and show the latest data.


If it is an embedded report, based on my testing, when you refresh the dataset, the latest data is not immediately reflected in the embedded report. It is recommended that you run the following code for the embedded report after the dataset is refreshed and it will refresh the report to display the latest data.

 

// Refresh the displayed report
try {
    await report.refresh();
    console.log("Refreshed");
}
catch (errors) {
    console.log(errors);
}

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Winniz, 

 

Thanks for your reply. I tried to refresh the report as you mention but it does not seem to be working. 

 

As per the official documentation https://docs.microsoft.com/en-us/javascript/api/powerbi/powerbi-client/report.report#powerbi-client-...

Refresh() method only refresh the data source, but in this case, we want to refresh the report (visuals). 

 

I think this is one of the basic things that not sure why the PowerBI team is not willing to do.  As per this post https://ideas.powerbi.com/ideas/idea/?ideaid=39ba67cf-724e-4b6c-9906-51163749f759&page=3, this issue has been reported since 2015 but no resolution. the report will load with whatever selection the author saved or saved when the report is published.

 

Thanks,

 

MikeJohnsonZA
Responsive Resident
Responsive Resident

You need to deselect the sliced before uploading it to the service.

 

Power BI defaults to the slicer selection that was made and valid when the report was saved and published.

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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