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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
abpgupta
Continued Contributor
Continued Contributor

Execution Time Changes on PBI Service for Paginated report

Hi All,

 

When I run Paginated report in power BI Report Builder, Execution Time parameter shows correct Time as per my TimeZone; however, when it's published to PBI Service and run , I see Timezone way behind.  

 

Is there any settings or calculation to make it it current Time Zone in PBI Service as well?

 

Thanks for any inputs!

 

Regards

Buddhi

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

Hi, @abpgupta 

Here’s a method to change the DateTime shown in the report, you can add a custom column in Power query to fix the timezone to local using M query, you can check these two functions:

DateTime.AddZone()

DateTime.FixedLocalNow()

屏幕截图 2020-12-31 174035.png

You can try a custom column like this:

Datetime column

=DateTime.AddZone([Utc DateTime], -6)

 

Here’s a case similar to the Time value shown in Power BI reports, you can take a look and check if it’s useful:

https://community.powerbi.com/t5/Desktop/Date-time-showing-issue/td-p/1558757

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
abpgupta
Continued Contributor
Continued Contributor

Thanks @v-robertq-msft ! using UTC FixedNow and Add TimeZone functions, I am able to reflect correct TimeZone on PBI Service as well.   For Day Light Time Zone, I would also need to add calculation based on Month and use in TimeZone Calculation. 

v-robertq-msft
Community Support
Community Support

Hi, @abpgupta 

Here’s a method to change the DateTime shown in the report, you can add a custom column in Power query to fix the timezone to local using M query, you can check these two functions:

DateTime.AddZone()

DateTime.FixedLocalNow()

屏幕截图 2020-12-31 174035.png

You can try a custom column like this:

Datetime column

=DateTime.AddZone([Utc DateTime], -6)

 

Here’s a case similar to the Time value shown in Power BI reports, you can take a look and check if it’s useful:

https://community.powerbi.com/t5/Desktop/Date-time-showing-issue/td-p/1558757

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

abpgupta
Continued Contributor
Continued Contributor

Thanks @lbendlin  for inputs!
Is there any way to know if report is run from PBI Service or from Report Builder? If it's possible, probably I can do calculation to show correct run time. 
Secondly, if there is function to convert TimeZone, that may help here as well.

Please let me know. Thanks in advance. 

lbendlin
Super User
Super User

No, Power BI Service runs on UTC. You can't change that.

 

You can change the scheduling time zone if that helps.

lbendlin_0-1608773769800.png

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors