Forum Discussion
Change Date/Time Zone
- 1 year ago
hey maryanncardenas,
To get report refresh time in Dublin time:
- Go to Power Query β New Blank Query
- Paste this code:
let
utcNow = DateTimeZone.UtcNow(),
dublinTime = DateTimeZone.SwitchZone(utcNow, 1) // Use 0 or 1 depending on DST
in
dublinTime
- Name it RefreshTimeDublin and load it to your model.
*Note:
- UTCNOW() in DAX shows current time, not refresh time.
- Only Power Query captures the actual refresh timestamp.
βHope this solution helps you make the most of Power BI! If it did, click 'Mark as Solution' to help others find the right answers.
π‘Found it helpful? Show some love with kudos π as your support keeps our community thriving!
πLetβs keep building smarter, data-driven solutions together! π [Explore More]
hey maryanncardenas,
To get report refresh time in Dublin time:
- Go to Power Query β New Blank Query
- Paste this code:
let
utcNow = DateTimeZone.UtcNow(),
dublinTime = DateTimeZone.SwitchZone(utcNow, 1) // Use 0 or 1 depending on DST
in
dublinTime
- Name it RefreshTimeDublin and load it to your model.
*Note:
- UTCNOW() in DAX shows current time, not refresh time.
- Only Power Query captures the actual refresh timestamp.
βHope this solution helps you make the most of Power BI! If it did, click 'Mark as Solution' to help others find the right answers.
π‘Found it helpful? Show some love with kudos π as your support keeps our community thriving!
πLetβs keep building smarter, data-driven solutions together! π [Explore More]