So, I'm working on creating a report that highlights cells in a column that meet certain criteria. The issue I'm running into is that when I use the compute block to create the criteria, it is subsequently highlighting all cells in the column on that report instead of only the ones that meet the stated criteria. It could be a formatting issue, but I'm not sure. Any help would be greatly appreciated: variables - per_change_in_med_rat_incl format = PERCENT9.2 - change_limit format= PERCENT9.2 So, what I want the report to do is to calculate the absolute value of the percentage in the column per_change_in_med_rat_incl and then check to see if it is greater than the corresponding percentage value in change_limit and to highlight the cell if it meets that criterion: compute per_change_in_med_rat_incl; if abs(per_change_in_med_rat_incl) > change_limit then call define (_col_,'style', 'style=[background=yellow]'); endcomp;
... View more