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! Request now

Reply
Shine_456
Frequent Visitor

Convert UTC to Users time zone for date column in reports

Hi All,

 

I have query on Time zone isuue.

 

I have adate column of Created_Date with UTC time. With respective to user I need to convert UTC to their time zone in the report.

(Ex: A client has multiple Users wit different time zones. A User need to see date column as their local time zone. UTC + 5.30 timestamp)

 

Plz share ur ideas on this and DAX queries for this

 

Thanks

1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

Here is a measure expression that will dynamically change a UTC datetime to the local datetime. You could use a similar approach in a DAX column, but the user would have to refresh the pbix file for it to recalculate.

 

DT as Local = var dt = MIN(DateTimes[DateTimeColumn]) // any expression that results in a datetime value
var hrsdiff = DateDiff(UTCNOW(), NOW(), HOUR)
return dt + hrsdiff/24
 
Pat
 
Microsoft Employee

View solution in original post

2 REPLIES 2
ppm1
Solution Sage
Solution Sage

Here is a measure expression that will dynamically change a UTC datetime to the local datetime. You could use a similar approach in a DAX column, but the user would have to refresh the pbix file for it to recalculate.

 

DT as Local = var dt = MIN(DateTimes[DateTimeColumn]) // any expression that results in a datetime value
var hrsdiff = DateDiff(UTCNOW(), NOW(), HOUR)
return dt + hrsdiff/24
 
Pat
 
Microsoft Employee
Imrans123
Advocate V
Advocate V

Assuming you know where the User lives by a country column, I would create another dimension table listing down all countries in one column and their respective difference from UTC zone (in hours) in anoter column. Create a custom column in fact table, use the related value from that dimension table to add/subtract from the UTC time stamp. Name that column Local time or something and use that column where relevant.

 

It might affect your refresh time since it's data transformation, but because there's no DAX involved, the runtime will be fast. 

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 Kudoed Authors