BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
radha009
Quartz | Level 8

i have data  with columns Names (win ,unix,sas,sep..etc) and data with yes and no. i want to delete the column without giving the column name.(ex: if sas column has all 'No' data).'

 

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
gamotte
Rhodochrosite | Level 12

Hello,

 

data have;
    input col1 $ col2 $ col3 $;
cards;
Yes No No
No No Yes
Yes No Yes
;
run;

data NULL_;
    set have end=eof;
    array cols(*) col:;
    array nos(3)_TEMPORARY_;

    do i=1 to dim(cols);
        if strip(cols(i))="No" then nos(i)+1;
    end;

    if eof then do;
        call execute('data want; set have;');
        if max(of nos(*))=_N_ then do;
            call execute('drop');
            do i=1 to dim(cols);
                if nos(i)=_N_ then do;
                    call execute(vname(cols(i)));
                end;
            end;
        end;
call execute('; run;');
    end;
run;

View solution in original post

3 REPLIES 3
LinusH
Tourmaline | Level 20
This probably need that you first query the table, and based on that issue your drop column statement. Macro logic is what I see.

There have been a lot of similar question on the communities, especially when all column uses are missing. Do a search and youbwould be able to learn from those.
Data never sleeps
gamotte
Rhodochrosite | Level 12

Hello,

 

data have;
    input col1 $ col2 $ col3 $;
cards;
Yes No No
No No Yes
Yes No Yes
;
run;

data NULL_;
    set have end=eof;
    array cols(*) col:;
    array nos(3)_TEMPORARY_;

    do i=1 to dim(cols);
        if strip(cols(i))="No" then nos(i)+1;
    end;

    if eof then do;
        call execute('data want; set have;');
        if max(of nos(*))=_N_ then do;
            call execute('drop');
            do i=1 to dim(cols);
                if nos(i)=_N_ then do;
                    call execute(vname(cols(i)));
                end;
            end;
        end;
call execute('; run;');
    end;
run;

radha009
Quartz | Level 8

Perfect. thanks a lot.

SAS Innovate 2025: Call for Content

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 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 3 replies
  • 1852 views
  • 0 likes
  • 3 in conversation