Okay, it's clear, and I've been able to replicate it, but it's a little odd. PROC FREQ normally always lists the statistic you ask for along the left margin; I wasn't able to get rid of it in the normal course of events. BUT, you also use a "BY" variable (VPC18), which I assume has only one value. For some reason, under this circumstance, PROC FREQ drops the marginal statistic name. To get the same behaviour, modify the code in the stored procedure to look like: PROC FREQ DATA=xxx ORDER=INTERNAL; BY VPC18; TABLES ProfileCode * Day / NOROW NOCOL NOPERCENT NOCUM SCORES=TABLE ALPHA=0.05; RUN; and you'll get identical results. Tom
... View more