Hi everyone, I am fairly new to Proc Report and am struggling with a requirement. I am using ODS to output a dataset to Excel, and I need to conditionally format a cell based on the value of another variable. (My code is below). Requirement: If the value of visnd = 1 then the FU30DALD variable should be grey for that row. The whole row shouldn't be grey, just that cell under FU30DALD. My dataset contains all the variables I am referencing in the compute block. I have this error in my log: "ERROR: Invalid column specification in CALL DEFINE" with "NOTE: Argument 1 to function DEFINE(' '[12 of 100 characters shown],'style','style={backg'[12 of 27 characters shown]) at line 2 column 7 is invalid." Any guidance is appreciated! Current code: proc report data=final nowd headline headskip spacing=3 split='|' missing ls=256 ps=42 ; column dummy1 _all_ ; define dummy1 / noprint; define FU30DALD / display; define visnd / display; *if FU30 not done then grey out the FU30DALD cell; compute dummy1; if (visnd = 1) then do; call define (FU30DALD,'style','style={background=lightgray}'); end; endcomp; run;
... View more