Hi:
With PROC TABULATE, you can use a format to do some highlighting, such as shown below:
However, this format applies to both columns for COLPCTN. Not just the M column. It happened to work because I hardcoded 10.00 and 30.00 which were only found in the M column.
With different values in the format, my format would impact both columns, like this:
The only way to JUST touch one of the cell values in the M column without impacting the F column would be to switch to PROC REPORT or possibly the Report Writing Interface. But for calculating COLPCTN, you might want to use TABULATE to generate the values and then use REPORT for the color coding. Your logic is not entirely clear to me for the color coding your want.
Hope this helps,
Cynthia
... View more