Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
I have a SharePoint List containing business trip data.
The same date is displayed correctly in:
However, after refreshing the Semantic Model in Power BI Service, the date becomes 1 day earlier.
Example:
| Outlook Calendar | 2 Aug 2026 | 4 Aug 2026 |
| SharePoint List | 2 Aug 2026 | 4 Aug 2026 |
| Power BI Desktop | 2 Aug 2026 | 4 Aug 2026 |
| Power BI Service (after refresh) | 1 Aug 2026 | 3 Aug 2026 |
Power Query receives the following values from SharePoint:
To convert them to Singapore dates, I use:
After this transformation:
(not Date/Time)
Immediately after publish: - Correct
Date becomes:
Why would:
all show the correct date,
but after a Power BI Service Semantic Model refresh, the date shifts back by one day?
Has anyone seen differences between Power BI Desktop and Power BI Service when using:
Solved! Go to Solution.
Hii @Hachi0805
Avoid DateTimeZone types altogether and use plain duration math instead, which isn't subject to the same folding reinterpretation:
Table.TransformColumns(#"Renamed Columns", {
{"StartDate", each if _ = null then null else Date.From(DateTime.From(_) + #duration(0,8,0,0)), type date},
{"EndDate", each if _ = null then null else Date.From(DateTime.From(_) + #duration(0,8,0,0)), type date}
})
Hii @Hachi0805
Avoid DateTimeZone types altogether and use plain duration math instead, which isn't subject to the same folding reinterpretation:
Table.TransformColumns(#"Renamed Columns", {
{"StartDate", each if _ = null then null else Date.From(DateTime.From(_) + #duration(0,8,0,0)), type date},
{"EndDate", each if _ = null then null else Date.From(DateTime.From(_) + #duration(0,8,0,0)), type date}
})
Thank you Rohit. it works! now i can keep Singapore Time even after refresh deta model!! really appreciate your help.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 9 | |
| 9 | |
| 5 |