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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Is this a Power BI thing, or a sharepoint thing?

I have created a dashboard via desktop, published it, embedded it into Sharepoint.

When I check it over to ensure everything is working correctly, I can see that there are a couple of issues with a data card that includes a date and time

 

Desktop

Desktop.PNG

 

Sharepoint

Sharepoint.PNG

 

Firstly, the date format has been changed from DD/MM/YYYY to MM/DD/YYYY and second; the timestamp has not encorporated daylight saving time, meaning that it is 1hr behind the true refresh time.

 

It will be really frustrating explaining to senior leaders that they need to trust me that its been refreshed, even though it shows that its an hour behind!

 

Can anyone help with this?

 

Thanks,

Chris

 

3 REPLIES 3
v-alq-msft
Community Support
Community Support

Hi, @Anonymous 

 

Power BI service is based on the UTC time. I'd like to suggest you refer the following links to see if they help.

Solving DAX Time Zone Issue in Power BI

Daylight Saving Time And Time Zones In M

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

edhans
Super User
Super User

I don't know about the format, other than perhaps your computer/Power BI desktop is in a different region format than your SharePoint server. Might need to consult with your SharePoint admin on that.

 

On DST, you have to have a DST table to determine if you are in a DST time period or not, then add 1 (yes) or 0 (no) to the refresh time. ALl refresh times are based on UTC with no DST. You'd use DateTimeZone.SwitchZone(DateTimeZone.LocalNow(), -x + varDST) where X is your timezone offset, and varDST is the 1 or 0.

I have a DST table with two columns - DSTStart, and DSTEnd. I then filter this table to be today is >= DSTStart and today is <= DSTEnd then count the rows. It returns 1 or 0 to that query. I could call that query varDST and use it in formulas as above.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting
mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous ,

 

this is due to the Power BI Service, which runs in UTC time.

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors