Hey,
I create a table say 5cells by 5cells. I can use the code below to colour the background of a column of cells however I want to colour just particular cells. (I dont want to colour on a condition of the contents of a cell). For example I want to colour the first 2 cells of the first 2 rows red, and then other 3 cells in the same 2 rows blue???
Any help please,
Niall
PROC TABULATE
DATA=&Datain;
CLASS Segment_X Segment_Y;
TABLE Segment_Y=' ' all=' '*{s=< parent >{background=grey}} , (Segment_X='Turnover Segment' all=' ' )*N=' '/MISSTEXT='None';
I create a table say 5cells by 5cells. I can use the code below to colour the background of a column of cells however I want to colour just particular cells. (I dont want to colour on a condition of the contents of a cell). For example I want to colour the first 2 cells of the first 2 rows red, and then other 3 cells in the same 2 rows blue???
Any help please,
Niall
PROC TABULATE
DATA=&Datain;
CLASS Segment_X Segment_Y;
TABLE Segment_Y=' ' all=' '*{s=< parent >{background=grey}} , (Segment_X='Turnover Segment' all=' ' )*N=' '/MISSTEXT='None';