0

Does anyone know of a way to remove the last blue total line? enter image description here

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;
3
  • 7
    ?? You don't want totals then why did you ask for them by using the SUM statement? Commented Oct 16, 2022 at 22:41
  • Does this answer your question? How to PROC PRINT only the sum of a column of data Commented Oct 17, 2022 at 8:54
  • Remove the SUM statement. Commented Oct 17, 2022 at 16:25

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.