BookmarkSubscribeRSS Feed
ybz12003
Rhodochrosite | Level 12

Hello:

 

I am curious if there is a way to find a column like the operation Ctrl + F in Excel.  Just curious, cause I have over 500 columns.

 

Thanks.

4 REPLIES 4
PaigeMiller
Diamond | Level 26

This could use some clarification.

 

I am curious if there is a way to find a column

 

Are you asking to find a specific column with a specific name, or are you asking to search for specific values in a given column?

--
Paige Miller
Reeza
Super User

@ybz12003 wrote:

Hello:

 

I am curious if there is a way to find a column like the operation Ctrl + F in Excel.  Just curious, cause I have over 500 columns.

 

Thanks.


Yes.

ybz12003
Rhodochrosite | Level 12

First, I would like to find a specific column with a specific name.   Then I would like to search specific value or text in a given column.

 

Is there a way to do that? 

34reqrwe
Quartz | Level 8

What software are you using? In Enterprise Guide you if you are viewing a dataset you can use Ctrl+F . 

 

But if you have lots of data (which it sounds like you do) you are better to write SAS code . You could do something like this:

%macro find_data (column= , value= ) ;

	data want; 
		set sashelp.class;
		where &column=&value;
	run;
%mend;


%find_data (column=Name , value='Carol') ;
%find_data (column=Age , value=14) ;

 

 

 

 

 

 

 

 

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
  • 4 replies
  • 3732 views
  • 3 likes
  • 4 in conversation