BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
RB1Kenobi
Quartz | Level 8

Hello

I'm using SAS9.3 on a PC with Windows7 / Office 2010.

 

When using the ODBC Microsoft Excel Drivers to import data from an Excel worksheet into SAS I have encountered a slight problem.   Using a macro to loop around and import a number of worksheets the code below can cope with varying columns, but it errors when the sheet name differs from the name specified in my SAS syntax.

There are too many files to verify manually.

 

So, is there a way to make the statement below more flexible?  For example, code it to always take the first worksheet?

Thanks in advance, Rb1.

 

 

proc sql;

connect to odbc (COMPLETE="DSN=Excel Files;DBQ=&directory.\&filename..xlsx");

create table Imported_&i.

as select

*

, "&filename." as Origin

from connection to odbc

(select *

from [sheet1$])   /* Issue - some sheets being imported have been renamed */

;

disconnect from odbc;

quit;

 

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20

If you would use the Libname Excel (or ODBC) engine instead, you could use SASHELP.VSTABLE/VCLOUMN to drive your logic.

Data never sleeps

View solution in original post

2 REPLIES 2
LinusH
Tourmaline | Level 20

If you would use the Libname Excel (or ODBC) engine instead, you could use SASHELP.VSTABLE/VCLOUMN to drive your logic.

Data never sleeps
Reeza
Super User

I'm assuming you don't have SAS Access license for the Excel files so your using ODBC as a workaround. 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

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
  • 1492 views
  • 0 likes
  • 3 in conversation