Something like the following will eventually get you there:
Code:proc report data=data; column date ("Group A" (cost average)) ("Group B" (cost average)); define column / group style (header) = {background=yellow}; ... ... (extra code excluded) run; quit;
Though this may only change the header, more detail is needed to get at that cell,
perhaps:
keyword "Group A" / style = {background=yellow}





Reply With Quote
