Hi, in creating report, I am trying to list the first and last names of individuals with a count of surveys completed. In my report, one individual may be listed more than once, however proc report leaves a blank space (to represent a duplicated name). Is there any way to have the name printed again, instead of leaving blank? proc report data=ITr out=ITre(drop=_break_) nowd; column ID LName FName survey n; define ID/Group; define LName/Order 'Last'; define FName/Order 'First'; define survey/across 'surveys for 2018'; rbreak after / dol skip summarize ; compute after; ID='Total'; endcomp; run;
... View more