如何在 REST API 的 power bi 查询语句中使用当前日期时间作为参数?我指定了两个参数“DateStart”和“DateEnd”,我想将它们包含在我的数据源的 SQL 语句中,我想将 DateEnd 添加为当前系统日期时间,并将 DateStart 添加为过去 15 分钟的日期时间。
我的查询是
let
body = Text.ToBinary("{
""Type"": ""Feedbacks"",
""FromDate"": ""01-01-2015 23:00:00.000"",
""ToDate"": ""20-09-2017 23:00:00.000"",
""SearchField"": ""test"",
""SearchFieldValue"": ""*""
}"),
actualUrl = "http:/xx.xx.xx.xx:xx/service/GetSomething",
options = [
Headers =[#"Content-type"="application/json"],
Content=body
],
result = Web.Contents(actualUrl, options),
#"Imported JSON" = Json.Document(result,65001)
in
#"Imported JSON"
在这里,我想将结束日期添加为当前日期时间并将开始日期添加为 current-15 分钟
提前致谢。