Forum Discussion
kora
10 years agoRegular Visitor
data refresh in published report/dashboard
Hello I created a desktop report on a combination of Salesforce data, and a txt and xlsx file on OneDrive for Business. Then I published it and pinned it to a dashboard. Will the data (then...
v-caliao-msft
10 years agoMicrosoft Employee
Hi Kora,
According to your description, you need to know the latest refresh date of the report, right?
If that is the case, you can add a query to get the latest refresh date.
- Click Get Date in PBI desktop and select Blank Query.
- Change the Name from Query1 to Last refresh date.
- Enter the code below on the formula bar.
= DateTime.Time(DateTime.LocalNow()) & DateTime.Date(DateTime.LocalNow()) - Click Close & Apply
- Create a new measure on this table
Last refresh on = "Last refreshed on: " & FIRSTDATE('Last refresh date'[Last refresh date]) - Click on the card visual and insert the new measure Last refresh on.
Regards,