This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is now in read-only for platform upgrade. 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.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 15 | |
| 11 | |
| 9 | |
| 8 | |
| 6 |
| User | Count |
|---|---|
| 29 | |
| 23 | |
| 18 | |
| 15 | |
| 13 |