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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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