Hi All,
a lot rusty with SAS but getting back into using it.
I need to append monthly data sets to an existing SAS Table called HolData. The new data is in /folders/myfolders/Data/November.xlsb.
This is what I have so far - any help is appreciated.
FILENAME REFFILE '/folders/myfolders/Data/November.xlsb';
Proc append data= out=work.HolData;
Run;
Cheers
Dean
proc append base = Mylib.HolData
data = Mylib.MonthlyData
;
run;
quit;
Documentation is here: https://documentation.sas.com/?docsetId=proc&docsetTarget=p1bjrbc5esr90on12o8vs7gyv8ue.htm&docsetVer...
The first thing you will probably need to do is convert the file to a readable format. Open it in Excel and save it as an XLSX file instead.
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.