@MAKEDATE[n[,d]]:  Returns a date, formatted according to the current country settings, or as explicitly specified by d (see Date Display Formats). n is interpreted as the number of days since 1980-01-01, and must be in the range 0 to 43829 (corresponding to the date 2099-12-31). This is function is the inverse of @DATE. The optional second parameter specifies the date format:

 

0system default        
1USA (mm/dd/yy)        
2European (dd/mm/yy)        
3Japan (yy/mm/dd)        
4ISO 8601 (yyyy-mm-dd)
5ISO 8601 (yyyy-Www-d)
6ISO 8601 (yyyy-ddd)        

 

Examples:

 

echo %@makedate[7924]

09/11/01

 

echo %@makedate[7924,4]

2001-09-11