Skip to content

Instantly share code, notes, and snippets.

@daynebatten
Created April 23, 2015 18:54
Show Gist options
  • Select an option

  • Save daynebatten/72ff995a5c0195354c9b to your computer and use it in GitHub Desktop.

Select an option

Save daynebatten/72ff995a5c0195354c9b to your computer and use it in GitHub Desktop.
/* "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