The Base.Summary table template defines the foreground color of the NOBS column to green. Because the vertical alignment and heading of the NOBS column, and the other table attributes, are not defined, they are no longer part of the Base.Summary table template. To view the table template Base.Summary created by Program 2, follow these steps.

  1. Submit this command:

    odstemplates
  2. Double-click the item store WORK.TEMPLAT.

  3. Double-click the item store Base.

  4. Right-click the table template Summary and select Open. The table template Base.Summary is displayed in the Template Browser window.

proc template;                                                                
   define table Base.Summary / store = WORK.TEMPLAT;                          
      notes "Summary table for MEANS and SUMMARY";                            
      dynamic clmpct one_var_name one_var_label one_var;                      
      column class nobs id type ways (varname) (label) (min)
      (max) (range) (n)(nmiss) (sumwgt) (sum) (mean) (uss) (css)
      (var) (stddev) (cv) (stderr) (t) (probt) (lclm) (uclm) (skew)
      (kurt) (median) (mode) (q1) (q3) (qrange) (p1) (p5) (p10) 
      (p25) (p50) (p75) (p90) (p95) (p99);         
      define nobs;                                                            
         style = {                                                            
            color = green                                                
            };                                                                
      end;                                                                    
   end;                                                                       
run;