Is it possible to change the last modified date of a SAS Dataset? I have a SAS Dataset (let's call it result.sas7bdat), using powershell, I already change the created date and last modified date. However, when I use this line of code %let olddataid=%sysfunc(open(MYLIB.RESULT)); %let timestamp = %sysfunc(attrn(&newdataid,modte)); the timestamp still shows the original modified date, is there anyway to permanently change the last modified date?
... View more