Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hello everyone
I have card visual in my report shows the last refersh date time for the the report and data set , but the time showing in utc time not in our local timezone +3utc , How can I change the time zone in power bi service to +3UTC or if it is not possible how to change it in the report ,
I am using this code to get the last refresh date time
-----------
let
Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()}})
in
Source
Solved! Go to Solution.
You have to add in the additional hours so it should look like this below where i am adding the 3 hours.
let
Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()+#duration(0,3,0,0)}})
in
Source
You have to add in the additional hours so it should look like this below where i am adding the 3 hours.
let
Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()+#duration(0,3,0,0)}})
in
Source
thank you , worked fine with me
User | Count |
---|---|
36 | |
31 | |
20 | |
11 | |
8 |
User | Count |
---|---|
52 | |
42 | |
28 | |
12 | |
11 |