Can anyone tell me how to do conditional formatting in SAS.
regards,
arthi
Assuming you mean traffic lighting in a report:
https://communities.sas.com/t5/SAS-Procedures/Conditional-formatting-Colors-Colours/td-p/132489
If not, please specify your question, giving details such as test data (form of datastep) and example output.
What type of report are you generating, PDF, RTF, HTML, Excel?
You can use Proc report to implement conditional highlighting.
Here is an example:
proc fcmp outlib=work.functions.smd;
function ftoc(f) $;
length r $ 10;
if f=210 then r='C';
else if f=211 then r=put(f,yymmdd10.);
else r='N';
return (r);
endsub;
run;
options cmplib=(work.functions);
proc format;
value ftoc(default=10) other=[ftoc()];
run;
data have;
input c ;
cards;
210
211
212
;
run;
data have;
set have;
format c ftoc10.;
run;
proc print;run;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.