BookmarkSubscribeRSS Feed
DME790
Pyrite | Level 9

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

 

 

2 REPLIES 2
SASKiwi
PROC Star
proc append base = Mylib.HolData
                     data = Mylib.MonthlyData
                     ;
run;
quit;

Documentation is here: https://documentation.sas.com/?docsetId=proc&docsetTarget=p1bjrbc5esr90on12o8vs7gyv8ue.htm&docsetVer...

 

Tom
Super User Tom
Super User

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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 547 views
  • 0 likes
  • 3 in conversation