📅  最后修改于: 2022-03-11 15:00:38.344000             🧑  作者: Mango
// Create a Blank Query and create a table with column name LastRefresh
let
Source = #table(type table[LastRefresh=datetime], {{DateTime.LocalNow()}})
in
Source
// Create a Measure
Last Refreshed Date = FORMAT(LASTDATE("Table Name"[LastRefresh]),"mmm dd, yyyy hh:mm:ss AM/PM")