• Sep 29, 2025 Sysfunc In Sas mation: Need to know the current date and time in a specific format? `SYSFUNC` can help. On Windows, the following code snippet uses the `DATE` command to retrieve the current date: ```sas data _null_; current_date = sysfunc(date()); put current_date=; run; ``` Th BY Celine Rolfson