Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 10
Program 10r
Percent of group


*
  Professional SAS Programming Secrets
  Program 10r
  Percent of group
*;

data work.detailingroup;
   merge work.group work.detail;
   by group;
   if x1sum then x1pctgroup = x1/x1sum*100;
   if x2sum then x2pctgroup = x2/x2sum*100;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections