Create the crosstabulation table and add a title. The FREQ
procedure creates a Citygovt by Robgrp crosstabulation table. The TITLE statement
specifies a title.
title "Applying Custom Formats to Cellvalues";
proc freq;
tables citygovt*robgrp / missprint;
run;