Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 7
Program 7b
Reading a fixed-field text data file

Input data: Text data file 7a

Compare: Program 7c


*
  Professional SAS Programming Secrets
  Program 7b
  Reading a fixed-field text data file
*;

data work.atomicweight;
   infile element1;
   input @1 element $char16.
       @17 symbol $char3.
       @20 atomicnumber f3.
       @23 atomicweight f10.;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections