BookmarkSubscribeRSS Feed
kuv
Calcite | Level 5 kuv
Calcite | Level 5

i 've created a report in excel sheet.

i used '|' pipe as delimiter.my output in excel was

name|id|account|sex|

raj|0345|SB|M

kumar|0346| |M

i am getting null for column account when there is no data availabe.

Now my question is it possible to remove the space between two pipes when there is no data. i.e., || (two pipes immediately) if there is null data . 

i want data like

kumar|0346||M

thanks in advance

varma

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Sorry, please clarify, you have created a delimited file from within SAS of data you have in SAS?  How have you created this file, is it by datastep with put statements, proc export, ods tagset etc.  Provide code if possible.

Ksharp
Super User

Add DSD option - from Tom.


data class;
 set sashelp.class;
 if ranuni(0) lt 0.6 then call missing(sex);
run;
data _null_;
set class;
 file 'c:\temp\x.txt' dlm='|' dsd;
 put name sex age;
run;

Xia Keshan

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 2413 views
  • 0 likes
  • 3 in conversation