הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
Syntax
Date.ToRecord(date as date) as record
About
Returns a record containing the parts of the given date value, date.
date: Adatevalue for from which the record of its parts is to be calculated.
Example
Convert the #date(2011, 12, 31) value into a record containing parts from the date value.
Usage
Date.ToRecord(#date(2011, 12, 31))
Output
[
Year = 2011,
Month = 12,
Day = 31
]