Previous Page | Next Page

Example Programs

Creating the Table1 Table Definition

proc template;
   define table table1; 
     mvar sysdate9; 
     dynamic colhd; 
     classlevels=on;
 
     define column char_var;
      generic=on;
      blank_dups=on;
      header=colhd;
      style=cellcontents;
   end;
 
     define column num_var;
      generic=on;
      header=colhd;
      style=cellcontents;
   end;
 
     define footer table_footer;
      text 'Prepared on ' sysdate9;
   end;
 
     end;
run;

Previous Page | Next Page | Top of Page