BookmarkSubscribeRSS Feed
sasiscool
Obsidian | Level 7

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
Strawberry12
      Fruit Total14

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 !

1 REPLY 1
Ksharp
Super User

You'd better post it at ODS and Base Reporting

and better offer some sample data ,so we can  test it .

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 626 views
  • 0 likes
  • 2 in conversation