Is it possible to add a card in power BI that shows the last time the underneath dataset has been updated?
Many thanks!
Is it possible to add a card in power BI that shows the last time the underneath dataset has been updated?
Many thanks!
Depending on the location it's really confusing with all those functions.. Let me suggest you the workable one: Go to the:
Query Editor 1.right click on the Queries body on the left side 2.new queries 3.Blank Queries 4.Paste the following formula by putting the right Server Instances and DB Name, " = Sql.Database("Server\Instance", "Database", [Query="select GETDATE() LastRefreshDate from AnyTableName"])
It'll work out. And since it's pulling directly from the server,, you don't have to worry about choosing the right DateTimeZone functions in PowerBI.
You can create a blank query and use the following M query to create a single-cell table:
And then you can use the
Card
visual and drag in the column to show it. You can rename the field to remove the default aggregation. (It doesn't matter since there is only one row of data anyways)The value will be recalculated each time the data is refreshed.