Hi All,
I am stuck with highlighting some cells of a column based on a comparison of cells of another column. In the following code I tried to use CALL DEFINE so that it highlights when column _c2_ is bigger than _c3_. Can someone help me please.
PROC SQL;
CREATE TABLE sale AS
SELECT country,
region,
prodtype,
product,
actual LABEL=''FORMAT=comma10.2,
predict LABEL=''FORMAT=comma10.2,
month
FROM sashelp.prdsale
WHERE mod(monotonic(),75)=0
ORDER BY ranuni(94612);
QUIT;
PROC REPORT DATA=sale NOWINDOWS MISSING HEADLINE HEADSKIP OUT=test;
COLUMN country (region prodtype) , predict;
DEFINE country / GROUP;
DEFINE region / ACROSS;
DEFINE prodtype / ACROSS;
RBREAK AFTER / SUMMARIZE SKIP ol;
COMPUTE predict;
IF _c2_>_c3_.sum THEN CALL DEFINE (_Col_, "style", "style={background=Yellow}");
ENDCOMP;
RUN;
... View more