Forum Discussion
AgoZ_KH
5 years agoResolver I
Last Report refresh date VS last Dataset refresh planned date (success)
Hi to all community! I have read many articles about the way to solve the problem how to show in a report the last refresh date. And of course this functions well. The only problem is that that Date...
- 5 years ago
Hi AgoZ_KH ,
You should not use FixedUtcNow (as described in documentation:
Returns the current date and time in UTC (the GMT timezone). This value is fixed and will not change with successive calls.)
I ve just tested following Query in PBI Service and works perfectly (you can simply copy paste it):let Source = DateTimeZone.UtcNow(), #"Converted to Table" = #table(1, {{Source}}), #"Renamed Columns" = Table.RenameColumns(#"Converted to Table",{{"Column1", "UTC Now"}}), #"Added Custom" = Table.AddColumn(#"Renamed Columns", "UTC +2", each DateTimeZone.SwitchZone([UTC Now],+2)) in #"Added Custom"The standard DateTimeZone.UtcNow() should solve your problem.
CatchAnalyst
1 year agoRegular Visitor
Hi everyone, i have the same request. The power report refresh stamp is great, but i need one for the dataset so my users know how current the data is when they are looking at the dashboard in Power BI Service.
Any help would be great