Created
April 23, 2015 18:54
-
-
Save daynebatten/72ff995a5c0195354c9b to your computer and use it in GitHub Desktop.
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
| /* "Primary" suppression - hide all values equal to 1 */ | |
| data testset; | |
| set testset; | |
| if num = 1 then num = .; | |
| run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment