While the solution worked, upon closer inspection I see that the indentation for numeric columns (COL1 - COL4) is a lot wider than the indentation in the text column I have on the left side of the report for the same rows. For instance, if I request 1 space for the data on row 7, the text column (NAME) is in fact indented by 1 space, but the numeric values in the following columns for that row are indented further to the right. How can I make the indentation match that of the first column?
compute COL4;
if row in(7, 10, 11, 14, 31) then do;
do i = 1 to 6;
call define (i, 'style', 'style=[pretext="A0"x]');
end;
end;
if row in(8, 9, 15, 21, 22, 27, 33, 32) then do;
do i = 1 to 6;
call define (i, 'style', 'style=[pretext="A0A0A0A0"x]');
end;
end;
if row in(16, 17, 18, 19, 20, 23, 24, 25, 26, 28, 29, 30) then do;
do i = 1 to 6;
call define (i, 'style', 'style=[pretext="A0A0A0A0A0A0"x]');
end;
end;
... View more