Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hi all,
I have a PowerBI report in which contains the measure m_now = NOW() and this measure is displayed on a card in my report. This report is used as a dashboard and I would like to display the current date and time on this card. The data is imported from BigQuery.
Now, within Power BI Service I have set the Scheduled Cache Refresh for the dataset to every 15 minutes, so I would assume that the current date and time is at least updated every 15 minutes. But it is not. What am I missing here?
I do not want to depend on manual refresh as the dashboard will be displayed on a wallboard.
Any help is appreciated.
Best,
Janine
Solved! Go to Solution.
No, measures are not refreshed at data load, only on page load.
Create a column in a new table or existing table with NOW(). That will get updated at data load. Use MAX([NowColumn]) to display in card.
But, it still won't update on the page unless you refresh...
Hi all,
Just an update on the status quo - I tried two workarounds:
1. Set automatic page refresh in Power BI Desktop (under Preview Features, then go to Page settings - see also link further down)
2. Adding a column with the current datetime and schedule the refresh for every 15 minutes in Power BI Service
( For whoever is interested, I did it with PowerQuery M Language:
SetNow = Table.AddColumn(Tablexxx, "now", each DateTime.LocalNow()),
TypeNow = Table.TransformColumnTypes(SetNow, {"now", DateTime.Type})
)
However - it seems that both solutions are not solving the issue due to Power BI Service settings by the administrator (https://docs.microsoft.com/en-us/power-bi/desktop-automatic-page-refresh) and the page is only refreshed every half an hour.
Thanks for your suggestions anyway!
Hi @janinw ,
One workaround:
Try to use Auto Refresh PowerBI Report to auto refresh Dashboards or Reports in Google Chrome.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks! For now the wallboard is not live, but I will look into this once it is. Seems promising!
No, measures are not refreshed at data load, only on page load.
Create a column in a new table or existing table with NOW(). That will get updated at data load. Use MAX([NowColumn]) to display in card.
But, it still won't update on the page unless you refresh...
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
60 | |
32 | |
27 | |
22 | |
22 |
User | Count |
---|---|
63 | |
49 | |
28 | |
24 | |
19 |