BookmarkSubscribeRSS Feed
whealthest88
Calcite | Level 5

 

 

My colleagues created 4 SAS datasets in a common directory.   While I can freely create and use any SAS dataset in that directory, and other teammates can freely read and process these 4 datasets, I just can’t.

 

Dataset Name                                                            Error Message

 

Close_variance_file.sas7bdat                                  The value VARIANCE ID is not a valid SAS name.

Open_variance_file.sas7bdat                                  The value VARIANCE ID is not a valid SAS name.

Mlone_accounts_file.sas7bdat                                The value UNIQUE ID is not a valid SAS name.

Variance_security_file.sas7bdat                             The value VARIANCE ID is not a valid SAS name.

 

What are these error messages supposed to mean?   Make NO sense AT ALL.

 

2 REPLIES 2
ballardw
Super User

Likely you have a different setting for the VALIDVARNAME option.

 

Run this code:

proc options option=validvarname;

run;

 

You will likely get this in the log:

VALIDVARNAME=V7   Specifies the rules for valid SAS variable names that can be created and
                   processed during a SAS session.

if your colleagues run the same code I suspect that the result will be VALIDVARNAME=ANY, which allows SAS to use non-standard  variable names.

 

ChrisNZ
Tourmaline | Level 20

Please change the thread title to: What does error message "not a valid SAS name" mean?

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
  • 8200 views
  • 1 like
  • 3 in conversation