BookmarkSubscribeRSS Feed
radha1
Calcite | Level 5

Hi,

 

I am trying to compare two rows from tables and highlighting mismatch data with color codes, in the output getting color for matched data also see the below example.

 

in old column and new column contain same data as "0" it should not be highlighted.

 

 

oldnew
4.05.314 
00
00
00
5.772 
00
00
00
584584
7.4797479
1.1301130
1.2361236
928928

 

i written the below code,

 

COL old new;

 

define old / display;

define new / display;

compute old

if (old ne new) then

call define (_col_,"style","style={background= orange}");

end compute;

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Do the comparison in a datastep and set a flag in the data.  Then use a simple proc report to print the data, and us the flag to do the traffic lighting.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 946 views
  • 0 likes
  • 2 in conversation