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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 711 views
  • 0 likes
  • 3 in conversation