Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 35
Program
30-year loan


data _null_;
   a = 115000;
   n = 360; * 30 years;
   p = mort(a, ., .006875, n);
   total = p*n;
   interest = total - a;
   put 'Principal' @16 a dollar11.2
       / 'Interest' @16 interest dollar11.2
       / @16 '-----------'
       / 'Total Payments' @16 total dollar11.2
       ;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page