এই ফাংশনটি একটি তারিখ গণনা করে যা বছর, মাস, দিন দ্বারা উল্লেখিত এবং ঘর ফরম্যাটে এইটি প্রদর্শিত হয়। DATE ধারণকারী একটি ঘরের পূর্বনির্ধারিত ফরম্যাট হলো তারিখ ফরম্যাট, কিন্তু আপনি অন্য সকল সংখ্যা ফরম্যাট দ্বারা একটি ঘর ফরম্যাট করতে পারবেন।
DATE(Year; Month; Day)
বছর ১৫৮৩ এবং ৯৯৫৭ অথবা ০ এবং ৯৯ এর মধ্যে একটি পূর্ণসংখ্যা।
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.