Forum Discussion
Does Dataverse Enable My PBI Service Report to Auto Refresh?
- 3 years ago
Refreshing the browser window doesn't refresh the underlying dataset in Import mode, just the visuals. You can use DirectQuery with Dataverse, in which case you can get the visuals to auto refresh periodically (meaning there's no need to manually refresh the browser) but bear in mind that DirectQuery can be slow.
Here's the relevant documentation:
https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-automatic-page-refresh
To the extent the logic in your DAX columns is easy to replicate in Dataverse, I'd favor leveraging the latter as it might perform better. The larger the dataset the more it's recommended to avoid DAX calculated columns and move the necessary transformations upstream (Dataverse in your case).
That said I can't vouch for Dataverse performance with calculated fields, I've only used Dataverse cursorily. With a "regular" SQL server I'd go with creating the columns in SQL views for sure.
Awesome, I really appreciate the sanity check here. Good thing I'm studying for the PL-200 exam and should be able to figure out those calculated fields -- as mentioned I've never put my hands on DV or DQ until very recently.
Thanks again.