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

i'm reading in an excel file

PROC IMPORT DATAFILE= "\\folder\pa54.xlsx"
out=pa54_working dbms=xlsx replace;
sheet='Sheet3';
RUN;

 

and i get this 

NOTE: One or more variables were converted because the data type is not supported by the V9
engine. For more details, run with options MSGLEVEL=I.

 

Where, exactly, do I put in options MSGLEVEL=I?  I looked through 3 web search pages and can't find it.

 

i tried this line alone

options msglevel=1;

and got 

ERROR 14-12: Invalid option value 1 for SAS option MSGLEVEL

1 ACCEPTED SOLUTION

Accepted Solutions
KathyKiraly
SAS Employee

The value for the MSGLEVEL system option is the letter I, not the number one.

options msglevel=i;

 

View solution in original post

2 REPLIES 2
KathyKiraly
SAS Employee

The value for the MSGLEVEL system option is the letter I, not the number one.

options msglevel=i;

 

geneshackman
Pyrite | Level 9
That worked. Thank you very much.

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
  • 6121 views
  • 1 like
  • 2 in conversation