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

Hi All,

I would like to underline the highest value on each row of a report, as in this simple example :

data test;
input grp across $ value @@;
datalines;
1 a 1.1 1 b 1.3 1 c 1.2
2 a 2.1 2 b 2.3 2 c 2.2
3 a 3.1 3 b 3.2 3 c 3.3
;

ods rtf file="&sasforum.\reports\abcTable.rtf" style=journal;
proc report data=test nowd;
column grp across,value;
define grp / group;
define across / "" across;
define value / "" mean;
run;
ods rtf close;

I would like a result like:

abcTable.png

Thanks.

PG

PG
1 ACCEPTED SOLUTION

Accepted Solutions
BrunoMueller
SAS Super FREQ

Hi PGStats

One can use arrays in a compute block. You can also change the sequence of across and analysis vars to make the headers look nicer See sample code below:

data test;
  input grp across $ value @@;
  datalines;
1 a 1.1 1 b 1.3 1 c 1.2
2 a 2.1 2 b 2.3 2 c 2.2
3 a 3.1 3 b 3.2 3 c 3.3
;

proc report data=test nowd;
 
column grp value, across _dummy;
  define grp / group;
 
define across / "" across;
 
define value / "" mean;
 
define _dummy / computed /* noprint */;

 
compute _dummy;

   
* define array for across values;
   
array _xacross{*} _c2_ _c3_ _c4_;
    acrossOffset = 1;
    maxRowValue = max(OF _xacross{*});

   
* for checking;
    _dummy = maxRowValue;

   
* find the colum equal to max ;
   
do i = 1 to dim(_xacross);
      if _xacross{i} = maxRowValue then do;
       
call define(cats("_C", i + acrossOffset, "_"), "STYLE", "style={textdecoration=underline}");
      end;
   
end;
 
endcomp;
run;

Bruno

View solution in original post

2 REPLIES 2
BrunoMueller
SAS Super FREQ

Hi PGStats

One can use arrays in a compute block. You can also change the sequence of across and analysis vars to make the headers look nicer See sample code below:

data test;
  input grp across $ value @@;
  datalines;
1 a 1.1 1 b 1.3 1 c 1.2
2 a 2.1 2 b 2.3 2 c 2.2
3 a 3.1 3 b 3.2 3 c 3.3
;

proc report data=test nowd;
 
column grp value, across _dummy;
  define grp / group;
 
define across / "" across;
 
define value / "" mean;
 
define _dummy / computed /* noprint */;

 
compute _dummy;

   
* define array for across values;
   
array _xacross{*} _c2_ _c3_ _c4_;
    acrossOffset = 1;
    maxRowValue = max(OF _xacross{*});

   
* for checking;
    _dummy = maxRowValue;

   
* find the colum equal to max ;
   
do i = 1 to dim(_xacross);
      if _xacross{i} = maxRowValue then do;
       
call define(cats("_C", i + acrossOffset, "_"), "STYLE", "style={textdecoration=underline}");
      end;
   
end;
 
endcomp;
run;

Bruno

PGStats
Opal | Level 21

Thanks a lot Bruno! You made my day! - PG

PG

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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
  • 2 replies
  • 1929 views
  • 3 likes
  • 2 in conversation