LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (January 2004, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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??


Back to: Top of message | Previous page | Main SAS-L page