BookmarkSubscribeRSS Feed
Mike_Davis
Fluorite | Level 6

Hello everyone,

I have a problem import .xls file to SAS when the sheet's name including " - " (Minus sign with blanks),please advise.

Thanks!

Mike

PROC IMPORT

OUT= one

DATAFILE= "c:\abc.xls"

DBMS=EXCEL REPLACE;

SHEET="north - east"; /*if I remove the blanks before and after the minus sign that will be ok(sheet="north-east")*/

GETNAMES=YES;

MIXED=YES;

USEDATE=YES;

SCANTIME=YES;

RUN;

3 REPLIES 3
Reeza
Super User

Put a $ after the name, ie "north - east$"

Mike_Davis
Fluorite | Level 6

This works,Thank you Reeza!

and would you please explain the meaning of $ here?

Thank you!

Reeza
Super User

Has to do with name literals and telling SAS how to read a name with spaces in it.

If you want to see what you should call the sheet I usually run access my excel workbook via a libname statement,

ie libname myxlfile excel 'C:\abc.xls';

Check the abc library in the explorer now and you can see how to reference your worksheets.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 4824 views
  • 3 likes
  • 2 in conversation