Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 10
Program 10k
List of distinct values


*
  Professional SAS Programming Secrets
  Program 10k
  List of distinct values
*;
proc sort data=work.customer (keep=state county)
    out=work.counties nodupkey;
   by state county;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections