閱讀英文

共用方式為


#date

語法

#date(year as number, month as number, day as number) as date

關於

使用代表年、月和日的整數建立日期值。 如果不符合下列情況,就會引發錯誤:

  • 1 ≤ 年 ≤ 9999
  • 1 ≤ 月 ≤ 12
  • 1 ≤ 日 ≤ 31

範例 1

建立代表 2023 年 12 月 26 日的日期。

使用方式

#date(2023, 12, 26)

輸出

#date(2023, 12, 26)

範例 2

使用自定義格式和德文文化特性,將日期轉換成文字。

使用方式

Date.ToText(#date(2023, 12, 26), [Format="dd MMM yyyy", Culture="de-DE"])

輸出

"26 Dez 2023"

範例 3

從包含 2023 年日期的數據表取得數據列。

使用方式

let
Source = #table(type table [Account Code = text, Posted Date = date, Sales = number],
    {
        {"US-2004", #date(2023,1,20), 580},
        {"CA-8843", #date(2023,7,18), 280},
        {"PA-1274", #date(2022,1,12), 90},
        {"PA-4323", #date(2023,4,14), 187},
        {"US-1200", #date(2022,12,14), 350},
        {"PTY-507", #date(2023,6,4), 110}
    }),
    #"Filtered rows" = Table.SelectRows(
        Source, 
        each Date.Year([Posted Date]) = 2023
    )
in
    #"Filtered rows"

輸出

#table (type table [Account Code = text, Posted Date = date, Sales = number],
{
    {"US-2004", #date(2023, 1, 20), 580},
    {"CA-8843", #date(2023, 7, 18), 280},
    {"PA-4323", #date(2023, 4, 14), 187},
    {"PTY-507", #date(2023, 6, 4), 110}
})