BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DavidPhillips2
Rhodochrosite | Level 12

Is there a way to create a blank colored line in SAS 9.2 using proc report.  The code would look something like this.

compute after location;

line ' ' style={background=lightblue}; 

endcomp;

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
SAS Super FREQ

Hi:

Do you mean like the pink line?

pink_divider_line.png

That was done in a COMPUTE block like this, you don't need CALL DEFINE unless you wanted to highlight one of the student's rows using CALL DEFINE, as shown in this paper: http://support.sas.com/resources/papers/proceedings13/366-2013.pdf on pages 13/14 at how CALL DEFINE is used to make the entire row purple.

  compute after age / style={background=lightpink};

    line ' ';

  endcomp;

cynthia

View solution in original post

5 REPLIES 5
DavidPhillips2
Rhodochrosite | Level 12

I found this:

call define(_ROW_,'STYLE',   'style={background=cxeeeeee}');

However it looks like I need an if condition to correlate it to the blank computed line. Still looking for an example.

data_null__
Jade | Level 19

It would be helpful if you make working example proc report that does close to what you want.  A blank colored line where and when are important to the method used to make it.

You can search for CALL DEFINE to find examples.

Cynthia_sas
SAS Super FREQ

Hi:

Do you mean like the pink line?

pink_divider_line.png

That was done in a COMPUTE block like this, you don't need CALL DEFINE unless you wanted to highlight one of the student's rows using CALL DEFINE, as shown in this paper: http://support.sas.com/resources/papers/proceedings13/366-2013.pdf on pages 13/14 at how CALL DEFINE is used to make the entire row purple.

  compute after age / style={background=lightpink};

    line ' ';

  endcomp;

cynthia

DavidPhillips2
Rhodochrosite | Level 12

Cynthia,

That is exactly what I was looking for.

Cynthia_sas
SAS Super FREQ

Hi:

  Just remember to try your stored process in all the possible client applications that could use it. Some clients only use SASReport XML (like PPT and Web Report Studio) and there is no guarantee that the LINE statement and/or the style override will be honored in ALL client applications. Especially since you are using 9.2, there were some issues with the LINE statement in stored processes in earlier versions of SAS. (19950 - Errors might occur when running a stored process containing PROC REPORT code in SAS® Web Rep...)

cynthia

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 1645 views
  • 3 likes
  • 3 in conversation