BookmarkSubscribeRSS Feed
frupaul
Quartz | Level 8

Hi everyone,

 

I am trying to read in an excel file (attached) into SAS with column headers starting in row 2. My objective is to get SAS to recognise that column names are in row 2 and therefore pick these up as column names.

 

What I have written so far is:

 

options validvarname=v7; 
libname contact xlsx '/home/frupaul0/Lucamod/Contact.xlsx';

 

proc print data=contact.contact_info;
run;

 

And what I get from this is (partial output):

Screen Shot 2018-07-20 at 07.27.34.png

So SAS has considered the column headers in row to to be variable values.

 

Can anyone help please?

 

Thanks,

1 REPLY 1
Kurt_Bremser
Super User

Export to csv from Excel and read with a custom data step, or remove the first line in Excel.

Both libname xlsx and proc import do not support variable names in a line other than the first.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 2135 views
  • 0 likes
  • 2 in conversation