BuildDate Function

  • Updated

The BuildDate function returns a date from a specified year, month, and day.

Syntax 1

 

The BuildDate function returns a date from a specified year, month, and day.

 

BuildDate(year)

 

 

Arguments:

 

 

 

year

Integer - Year number.

Syntax 2

 

The BuildDate function returns a date from a specified year, month, and day.

 

BuildDate(year, month)

 

 

Arguments:

 

 

 

year

Integer - Year number.

 

 

month

Integer - Month number, in the range 1-12. If omitted, 1 (January) is assumed.

Syntax 3

 

The BuildDate function returns a date from a specified year, month, and day.

 

BuildDate(year, month, day)

 

 

Arguments:

 

 

 

year

Integer - Year number.

 

 

month

Integer - Month number, in the range 1-12. If omitted, 1 (January) is assumed.

 

 

day

Integer - Day number, in the range 1-31. If omitted, 1 (the first of the month) is assumed.

Remarks

  • Example: BuildDate(1999) returns 01/01/1999.
  • Example: BuildDate(1999, 5) returns 05/01/1999.
  • Example: BuildDate(1999, 5, 31) returns 05/31/1999.

Was this article helpful?

0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.