$Month System Tag
- Last UpdatedNov 07, 2016
- 1 minute read
Returns the current month number.
Syntax
$Month
Data Type
Integer (read only)
Example(s)
This script assigns the string "October" to the string MonthName if the current month is 10.
IF $Month==10 THEN
MonthName="October";
ENDIF;