In which case it might be better to share them using some other file format. Perhaps CSV files?
You can uses the ZIP engine to put multiple CSV files into one ZIP file.
Example using %csv_vnext macro.
filename myzip zip 'C:\downloads\csvfiles.zip';
%csv_vnext
/*----------------------------------------------------------------------
Write SAS dataset as CSV file with headers using single data step
----------------------------------------------------------------------*/
(sashelp.class /* Input dataset name. DSNoptions allowed */
,outfile=myzip('class.csv') /* Output fileref or quoted filename */
,dlm=',' /* Delimiter character as literal value */
,names=1 /* Write header row? */
,label=0 /* Use LABEL instead of NAME for header row? */
,format= /* Allow overrides of formats */
);
%csv_vnext
/*----------------------------------------------------------------------
Write SAS dataset as CSV file with headers using single data step
----------------------------------------------------------------------*/
(sashelp.cars(obs=100) /* Input dataset name. DSNoptions allowed */
,outfile=myzip('cars.csv') /* Output fileref or quoted filename */
,dlm=',' /* Delimiter character as literal value */
,names=1 /* Write header row? */
,label=0 /* Use LABEL instead of NAME for header row? */
,format= /* Allow overrides of formats */
);
filename myzip ;
... View more