Hi:
It depends on what you mean -- in place of the LINE statement or in place of the PROC REPORT?
The LINE statement does not currently work with Web Report Studio. That means you have to redesign the kind of report you want. You would not be able to use the LINE statement in your current PROC REPORT. So your choices are 1) do not use that SP with Web Report Studio or 2) redesign the report so you don't need the LINE statements.
You would have to do something such as this (that I suggested to somebody else in the forum
http://support.sas.com/forums/thread.jspa?messageID=7175ᰇ) of showing the detail report and then following the detail report with the summary information (without the use of LINE statements) -- you could do this with PROC PRINT or PROC REPORT for the Detail report and then PROC REPORT or PROC TABULATE for the summary section.
Or, just abandon the "detail" portion of the report and switch to PROC TABULATE, since you already have the "counters" and just generate a summary report. Or, stick with PROC REPORT, but abandon the extensive LINE statement section in favor of a second table of a slightly different view of the summarized data.
In any of the other client applications (EG, Word, Excel) you should be able to see the results of the LINE statement.
cynthia