Thank you. I did that previously, however when it comes to the final output, the calculation of the 'Total' for 'Conversion Rate' is off, is there a work around for this one?
Jan 2021
Preapprovals
Conversion
Conversion Rate
47599
2467
757.16%
proc report data=LOCTest_List; columns dm location campaign_month , (customer_count converted ConversionRate); define dm/group; define location/group; define campaign_month/across 'LOC Preapprovals' order=data; define customer_count/sum 'Preapprovals'; define converted/sum 'Conversion'; define ConversionRate/sum 'Conversion Rate'; break after DM/Summarize; rbreak after/Summarize; compute after dm; call define (_ROW_,"Style","Style=[fontweight=bold]"); DM = 'Subtotal'; endcomp; compute after; call define (_ROW_,"Style","Style=[fontsize=3 fontweight=bold]"); DM = 'Total'; endcomp; run;
... View more