Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 7
Program 7j
Removing line numbers


*
  Professional SAS Programming Secrets
  Program 7j
  Removing line numbers
*;

data _null_;
   infile original length=linelength;
   file copy;
   input;
   linelength = 72;
   put _infile_;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections