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
SAS Super FREQ
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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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