이 함수는 연/월/일로 작성된 날짜를 내부 일련 번호로 변환한 다음 셀에 설정된 서식으로 표시합니다. DATE 함수를 포함하는 셀의 기본 서식은 날짜 형식이지만 0 숫자 서식을 사용하여 셀에 대한 서식을 설정하면 날짜의 내부 일련 번호를 숫자로 표시할 수 있습니다.
DATE(연도; 월; 일)
년은 1583과 9957 또는 0 과 99 사이의 정수입니다.
In you can set from which year a two-digit number entry is recognized as 20xx.
Month is an integer indicating the month. A value between 1 and 12.
Day is an integer indicating the day of the month. A value between 1 and 31.
If the values for month and day are out of bounds, they are carried over to the next digit. If you enter =DATE(2000;12;31) the result will be 2000-12-31. If, on the other hand, you enter =DATE(2000;13;31) the result will be 2001-01-31.
To avoid ambiguity, always use four digits for years.
=DATE(00;1;31) yields the date 2000-01-31 written as 01/31/00 if the cell format setting is MM/DD/YY.