I am trying to use the break statement in proc report for a specific purpose. I have two variables that I cross-tab. Food is the grouping variable and consists of character codes that are abbreviations for something else, and year code is a series of year. I am trying to build in a break to the grouping variable food, but at a specific location. I want the report to look like this.
Food
| 2014 |
---|
Apple | 2 |
Strawberry | 12 |
Fruit Total | 14 |
Spinach | 1 |
Broccoli | 3 |
I can't seem to build it to customize a break just for fruit, since all these elements are from the same variable food. Is there any way to do this. The code I used is posted below:
proc report data=work.la;
where year_code='2014';
column food, year_code
define food/group order=data preloadfmt f=$Food.;
define year_code / across ' ' ;
run;
thank you !