R/TODAY.R

Defines functions TODAY

Documented in TODAY

# TODAY Function from Excel
#' Basic TODAY function from excel
#'
#' It acts similiarly to Excel's TODAY function.No need to give the arguments. Function returns the system date.
#'
#' @import base
#' @export
#' @examples
#' TODAY()
#' @return Example returns the system date as the function does, nothing specific. Function will always return Date class.

TODAY <-
function(){
  Sys.Date()
}

Try the ExcelFunctionsR package in your browser

Any scripts or data that you put into this service are public.

ExcelFunctionsR documentation built on July 1, 2020, 8:35 p.m.