Hello,
I would like to create a macro that check if the excel file is empty or not before doing a proc import.
I am using Sas Enterprise Guide 5.1
The idea is the following. Suppose that I first test if my excel file is empty.
There is only two possible answers : yes or no.
If the file is empty do Steps A
Otherwise do Steps B.
I am able to ckeck if the file exist first. But how can I check if the Excel file (*.xlsx) is empty before doing a proc import?
%macro test(Dir=, FileName=);
%let filrf=myfile;
%if %sysfunc(fileexist(&Dir.\&FileName.)) %then
%do;
%put the file &FileName exist;
%end;
%else %put the file &FileName does not exist;
%mend test;
%test(Dir=c:\Travail\Temp2\, FileName= File1.xlsx);
Define empty? An xlsx file is never empty, and XLSX file is a ZIP file containing some folders, and some XML files at minimum. I assume you mean that it contains no data yes? If so just run the proc import, then test the dataset which is created - either as exist() function, or taking number of observations from the created dataset (can't remember if proc import creates and empty dataset for no data or not). There's no direct way to ascertain numbe of observations before import, even libname to an xlsx file will do a sort of import.
Check ANY attribute. data x; set sashelp.class; stop; run; %let dsid=%sysfunc(open(x)); %let any=%sysfunc(attrn(&dsid,any)); %let dsid=%sysfunc(close(&dsid)); %put &any ;
Hello KSsharp,
I have try your solution and it works fine if your worksheet have at least the variable names in it. I am not sure that it will works with a new excel file (empty).
Thanks for your help which is always apprecitated.
Alain
The code will return different value according to you have no obs, no variable, both no obs and no variable.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.