Hi @Pankp
As far as I know, I don't think you can merge cells in the summarize line in PROC REPORT like in Excel for example.
However, you can enhance the report output by computing blocks and use a call define statement to alter the cell values and appearances.
E.g.
data have;
input Col1 $ Col2 $ Result1 Result2;
datalines;
A C 1 2
B A 1 2
C B 1 2
;
run;
proc report data=have;
columns Col1 Col2 Result1 Result2 total;
define Col1 / group;
define Col2 / group;
define Result1 / sum;
define Result2 / sum;
define total / computed 'Total';
rbreak after / summarize;
compute total;
total = Result1.sum + Result2.sum;
endcomp;
compute Col1;
if Col1 = "" then do;
Col1 = "Total";
call define (1, 'style', 'style=[borderrightcolor=white]');
end;
endcomp;
run;
