| Date: | Fri, 23 Jan 2004 02:38:50 -0800 |
| Reply-To: | Dubravko Dolic <dubro@DOLIC.DE> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Dubravko Dolic <dubro@DOLIC.DE> |
| Organization: | http://groups.google.com |
| Subject: | compute _row_ in proc report to merge rows |
| Content-Type: | text/plain; charset=ISO-8859-1 |
Dear List
Problem: I have a table which has one entry per line with more columns
and borders around each cell:
| | | | |
|----|--------|--------|-----------|
|----|--------|--------|-----------|
|----|--------|--------|-----------|
|----|--------|--------|-----------|
|----|--------|--------|-----------|
|----|--------|--------|-----------|
Now I want to have some rows containing more that one entry per line
(but data coming from different obs in dataset) without borders
between lines. Using the order Option I recieve something like:
|----|--------|--------|-----------|
|xxx |xxx |xxx |123 | <- 'normal case'
|----|--------|--------|-----------|
|xxx |xxx |xxx |123 |
|----|--------|--------|-----------| <- away with these borders
| | | |456 | |
|----|--------|--------|-----------| <--'
| | | |789 |
|----|--------|--------|-----------|
Knowing that something like
compute VAR;
if CONTROL eq COND then
call define(_row_, 'style',
'style=...doin something
endcomp;
Could lead the way, I don't know which style attributes could be used
to whiten or delete the borders.
Any help??
|