Ez a függvény kiszámítja az év, hónap, nap formában megadott dátumot, majd megjeleníti a cella formázásában. A DÁTUM függvényt tartalmazó cella alapértelmezett formátuma a dátumformátum, de a cellákat formázhatja más számformátum használatával is.
DÁTUM(év; hónap; nap)
Az év egy 1583 és 9957 vagy egy 0 és 99 közötti egész szám.
oldalon beállíthatja, hogy egy kétjegyű évszám mely évtől kezdődően jelentsen 20xx-et.
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.