BookmarkSubscribeRSS Feed
yonib
SAS Employee
HI ,
for example i have this data:

data a;
input a b;
cards ;
1 2
3 4
5 6
7 8
;
run;
i want my output will be like this :

1 2
. .
3 4
. .
56
. .

thanks in advance,
3 REPLIES 3
yonib
SAS Employee
never mind ,
got it !
lu
Calcite | Level 5 lu
Calcite | Level 5
Hi
try this

data a;
input a b;
output;a=.;b=.;output;
cards ;
1 2
3 4
5 6
7 8
;
run;
lu Message was edited by: lu
Cynthia_sas
Diamond | Level 26
Proc PRINT supports the new BLANKLINE= option in SAS 9.2, as described here:
http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/a002291718.htm

cynthia

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1335 views
  • 0 likes
  • 3 in conversation