Hi: I don't understand what you're asking. Using DDE is not going to work with PROC TABULATE unless you create an output dataset. Did you look up the CLASSLEV statement??? You already use a STYLE= statement level override with your CLASS statement: CLASS sex /style={just=r}; So you merely have to look up and then use a CLASSLEV statement. For example, for AGE: CLASS sex age / style={just=r}; <--- added AGE here, so you can see both headers are right-justified CLASSLEV age / style={just=c}; <--- shows that the VALUES or LEVELS for AGE are center-justified separately from the HEADER label. produces this: cynthia
... View more