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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Custom Column with todays date - not working as expected

Hi Experts,
I have created a custom column by adding the below formula to get today's date in the column.

Date.From(DateTime.LocalNow())
 
But for some reason, I cannot get the Local date as per my timezone..
Can anyone help if i have to amend the formula?
 
Thanks
1 ACCEPTED SOLUTION
edhans
Super User
Super User

Use Date.From(DateTimeZone.FixedLocalNow()) instead.
You can force the TZ to a specific zone using:
DateTimeZone.SwitchZone(DateTimeZone.LocalNow(), -7) (this is UTC -7 hrs)

See this page for all of the ways you can work with timezones in PQ.

DateTimeZone functions - PowerQuery M | Microsoft Docs



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

View solution in original post

3 REPLIES 3
edhans
Super User
Super User

Use Date.From(DateTimeZone.FixedLocalNow()) instead.
You can force the TZ to a specific zone using:
DateTimeZone.SwitchZone(DateTimeZone.LocalNow(), -7) (this is UTC -7 hrs)

See this page for all of the ways you can work with timezones in PQ.

DateTimeZone functions - PowerQuery M | Microsoft Docs



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
Anonymous
Not applicable

Thanks @edhans 
This worked!

Glad I could help @Anonymous !



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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors