NDAY$ |
nday$ returns the date for the number of days elapsed since 1/1/1600.
nday$( exp_ent )
|
Element |
Description |
Restrictions |
|
exp_ent |
Integer expression. |
-1<=exp_ent<=3068036 |
# Today + 15 daysDATE = nday$( nday(date$) + 15)
# for preference write (means the same):
DATE = date$ + 15
The function nday$ function is used to convert from a number of days to a date.
You can replace nday$(X) with [1/1/1600]+X.
The result is a Date type.
|
Error |
Description |
|
ERDATE (56) |
exp_ent is not in the range [-1, 3068036]. |
|
ERMODE (10) |
exp_ent is not a numerical integer type. |
DAY - MONTH - YEAR - DAY$ - MONTH$ - NDAY - DAYN - DATE
|
|