I'm experimenting if the code below works. I attached the sample data.
/* START OF SAS CODE */
proc format;
value measure_fmt
1 = comma32.
OTHER = comma32.2
;
run;
proc tabulate data=WORK.sample_data;
class F1 F2 F3 F4 SEQ_NO;
classlev F4 / style={Format=measure_fmt.};
var NOACCT;
table
/* Row Labels */
SEQ_NO,
/* Column Labels */
F1=" "*F2=" "*F3=" "*F4={LABEL=" "}*NOACCT=" "*SUM=" "*{STYLE=<PARENT>};
RUN;
/* END OF SAS CODE */