Create formats for the variables Year and School. PROC FORMAT creates formats for Year and School.


proc format;
   value yrFmt . = " All";
   value $schFmt " " = "All    ";
   run;