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

I want to add the color to the report based on the cell value.

proc format; 
     value  usercolor 1="RED" 2="BLUE" 3="YELLOW"
      4="GREEN" 5="PINK" 6="ORANGE"
      7="MARRON" 8="CYAN";
run; 

Ods html body="c:\report.html";
Proc report data=myfile.info;
   column Name A1 A2 A3 A4 A5 A6 A7 A8; 
   define A1 / display style={Backgroundcolor=usercolor};
   define A2 / display style={Backgroundcolor=usercolor};
   define A3 / display style={Backgroundcolor=usercolor};
   define A4 / display style={Backgroundcolor=usercolor};
   define A5 / display style={Backgroundcolor=usercolor};
   define A6 / display style={Backgroundcolor=usercolor};
   define A7 / display style={Backgroundcolor=usercolor};
   define A8 / display style={Backgroundcolor=usercolor};
   define Adventure / display style={Backgroundcolor=usercolor};
run;
ods html close;

The values in the cells are 1~9 or just missing value.

However the colors are not added at all.

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

When using a format, it needs to end with a period.

 

define A1 / display style={Backgroundcolor=usercolor.};

See this paper here for other options:

http://support.sas.com/resources/papers/proceedings13/366-2013.pdf

View solution in original post

1 REPLY 1
Reeza
Super User

When using a format, it needs to end with a period.

 

define A1 / display style={Backgroundcolor=usercolor.};

See this paper here for other options:

http://support.sas.com/resources/papers/proceedings13/366-2013.pdf

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1 reply
  • 465 views
  • 0 likes
  • 2 in conversation