I want to have semilicon as delimiter, how to do that?
If you want to use semicolon as a delimiter try replacing your cards statement with cards4 statement.
Then at the end, instead of one semicolon before the run put ;;;;
If you want to use semicolon as a delimiter try replacing your cards statement with cards4 statement.
Then at the end, instead of one semicolon before the run put ;;;;
Alternatywą dla CARDS4 jest DATALINES4, schemat jest następujący:
data test;
infile DATALINES4 dlm=';';
input a b c;
DATALINES4;
1;2;3
4;5;6
;;;;
run;
Bart.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.