I guess you want to see it Brand wise. So, please add Brand in the first column. Then use the code below: PROC CORRESP DATA=XXX outc=corres_result noprint; var Var1 - Var40 ; id BRAND; run; ods html file="/home/YYY/corresp/xxx_coords_pct.xls"; proc print data=corres_result; run; ods html close; endsas; Please edit the code as per your dataset & variable name.. Hope this will help.
... View more