2013-01-17 60 views
1

突出我想打開整行紅色的人,他們的名字以「J」。這可能使用proc printSAS有條件一行ODS和PROC打印

ods html file=odsout style=htmlblue ; 

proc print data=sashelp.class noobs label; 
    var name age; 
run; 

ods html close; 

回答

4

我不相信這是可能的PROC PRINT。但是,PROC REPORT可以生成相同的輸出,但行數是紅色的。

相同的:

proc report data=sashelp.class nowd; 
columns name age; 
run; 

以紅:

proc report data=sashelp.class nowd; 
columns name age; 
compute name; 
if substr(name,1,1)='J' then 
    call define(_row_, "style", "style=[backgroundcolor=red]"); 
endcomp; 
run; 

我認爲它有點清潔劑使用過程中的樣式定義。但對於一次性類的事情,這是很容易。

+0

謝謝喬。我有這樣的感覺。 –