Is it possible to suppress the summary line when it equals the grouping result (>> Wien)?  Thank you     data t1;  land='F'; city='Paris'; value=100; output;  land='F'; city='Lyon'; value=200; output;  land='D'; city='Berlin'; value=100; output;  land='D'; city='Hamburg'; value=200; output;  land='A'; city='Wien'; value=100; output;  run;  proc report data=t1;  column land city value;  define land / group;  define city / group;  define value / sum;  break after land / summarize;  run;     Result:     land   city    value  A      Wien    100  A              100      >> I would like to suppress this row  D      Berlin  100         Hamburg 200  D              300  F      Lyon    200         Paris   100  F              300             
						
					
					... View more