View previous topic :: View next topic
|
Author |
Message |
LOKESH DAIVAM
New User
Joined: 22 Jul 2015 Posts: 4 Location: INDIA
|
|
|
|
Hi Team,
My current Output of a sas job :
Code: |
BIT $ VALUES OF THE CYCLES 25 AND 26
Obs CYCLE25 RECS
1 $400.00000 800
Obs CYCLE26 RECS
1 $2,200.00000 2692 |
My required output :
Code: |
BIT $ VALUES OF THE CYCLES 25 AND 26
CYCLE 25: $400.00000
CYCLE 26: $2,200.00000
|
How can i achieve the above result.Is it possible in sas to reformat the output like this?
Thanks in advance. |
|
Back to top |
|
|
Nic Clouston
Global Moderator
Joined: 10 May 2007 Posts: 2454 Location: Hampshire, UK
|
|
|
|
Please use the code tags when posting code and data. I will do it for you this time but in future... |
|
Back to top |
|
|
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
SAS can do many things -- look at PROC REPORT if you want to keep using a PROC. However, you would probably be better creating a single SAS data set with both values in it (named the same), then use a DATA step to PUT the data you want where you want. With a DATA step and PUT statements, you can literally control every byte of the entire page if you want. |
|
Back to top |
|
|
|