Thanks. Both replies were not wrong. I converted the year variables from numeric to character and assigned them the formats desired, e.g. data death2; set dths_t; stat="Deaths"; _2005=put('2005'N, comma8.0); data cmr2; set cmr_t; stat="CMR"; _2005=put('2005'N, comma8.1);
... View more