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.
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?
@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.
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?
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) ;
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.