Does anyone know of a way to remove the last blue total line?

This is the code I currently have: title1 'Physical Exam Results By Patient'; footnote1;
proc print data=cert.transvisit1 noobs nosumlabel;
id ID;
var measure visitno1 visitno2 visitno3;
sum visitno1 visitno2 visitno3;
by ID;
run;