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

Hi,

I have variables DX1 thru DX30.

ALSO I have DXPOA1-DXPOA30;

I want to check from DX2 to DX9 and see if they have non missing values. if non missing and corresponding DXPOA value is missing then I want to delete that record!!!

Could someone help me with the code????

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

data want;

     set have;

     array dx dx2-dx9;

     array dxp dxpoa2-dxpoa9;

     do _i_ = 1 to dim (dx);

          if not missing(dx[_i_]) and missing(dxp[_i_]) then delete;

     end;

run;

View solution in original post

1 REPLY 1
ballardw
Super User

data want;

     set have;

     array dx dx2-dx9;

     array dxp dxpoa2-dxpoa9;

     do _i_ = 1 to dim (dx);

          if not missing(dx[_i_]) and missing(dxp[_i_]) then delete;

     end;

run;

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 743 views
  • 0 likes
  • 2 in conversation