BookmarkSubscribeRSS Feed
deleted_user
Not applicable
which function in sas 9.1 can be used to find out if a value exist in a variable of a dataset or not?
for example:
dataset:
rollno name
1 anuj
2 ram
3 kamal
i need to check if 'ram' exist in variable name or not.
1 REPLY 1
Doc_Duke
Rhodochrosite | Level 12
There isn't a single function that does it. You will need to do some data step coding.

The INDEX function can be used in a DATA step to find out if a specific string exists in a character variable. You can set up an ARRAY to include all the character variables,
ARRAY CharVar {*} _CHARACTER_;
(I think that is the syntax.), and then use a DO loop to look at all the character variables.

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1 reply
  • 1544 views
  • 0 likes
  • 2 in conversation