Is it possible to add a card in power BI that shows the last time the underneath dataset has been updated?
Many thanks!
Create a blank query and use the following M query to create a single-cell table:
let Source = #table(type table[Last Refresh=datetime], {{DateTime.LocalNow()}})in Source
let
Source = #table(type table[Last Refresh=datetime], {{DateTime.LocalNow()}})
in
Source