📜  DAX Power BI 中的上次报告刷新日期 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:38.344000             🧑  作者: Mango

代码示例1
// 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")