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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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