$Day System Tag
- Last UpdatedMar 01, 2021
- 1 minute read
Returns the current day of the month.
Syntax
$Day
Data Type
Integer (read only)
Example(s)
This script assigns the string "It is a leap year!" to the string Msg2User if the current date is the February 29.
IF $Day==29 AND $Month==2 THEN
Msg2Usr="It is a leap year!";
ENDIF;