DATE {ExcelFunctionsR}R Documentation

Basic DATE function from excel

Description

It acts similiarly to Excel's DATE function. You give 3 arguments which are year,month and day and it will give you the date in a date format.

Usage

DATE(year, month, day)

Arguments

year

Give year argument to the function.

month

Give month argument to the function.

day

Give day argument to the function.

Value

This example returns 23rd June of 2020. Function will always return Date class.

Examples

DATE(2020,23,06)

[Package ExcelFunctionsR version 0.1.4 Index]