Created
October 26, 2020 18:39
-
-
Save shivallan/1c40dc77c86103e611be7ad95d985600 to your computer and use it in GitHub Desktop.
REN TEST TASK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data test1; | |
| a=1; output; | |
| a=2; output; | |
| a=3; output; | |
| a=4; output; | |
| a=11; output; | |
| a=21; output; | |
| a=31; output; | |
| a=41; output; | |
| a=1; output; | |
| a=1; output; | |
| a=1; output; | |
| a=1; output; | |
| a=1; output; | |
| a=2; output; | |
| a=3; output; | |
| a=4; output; | |
| run; | |
| data test2 (keep = a); | |
| set test1; | |
| if a eq 1; | |
| run; | |
| data test1 (keep = a); | |
| set test1; | |
| if a ne 1; | |
| run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment