Hi everyone, I have large code written in the sas main.sas program, my problem is I couldn't able to read the data present in the zip files, when I also unzip the files with the macro written below..., %macro unzip(file=, file_out=, path_zip=, path_unzip=); /* Versione pre SAS94 */ %sysexec cd "C:\Program Files\7-Zip";/* deve contenere il path dell'eseguibile zip */ %sysexec 7z x "&path_zip.\&file..zip" "-o&path_unzip."; %sysexec rename "&path_unzip.\&file..csv" "&file_out..csv"; %mend; %unzip; but I don't understand where is the problem when I open the libraries and see the tables it doesn't contain any data it shows zero observations for me and also in log file I don't see any erros , this makes me not able to figure it out where might be the error. Any suggestions would be commendable. Thank you in andance.
... View more