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
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.
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
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.