SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ronein
Meteorite | Level 14

Hello

What is the problem that I get only  one row ?

Data RawTbl;
INFILE DATALINES DLM=',';
input ID Customer1901 $ Branch1901 $
         Customer1902 $ Branch1902 $ 
         Customer1903 $ Branch1903 $
         Customer1904 $ Branch1904 $
         Customer1905 $ Branch1905 $
         Customer1906 $ Branch1906 $
         Customer1907 $ Branch1907 $
         Customer1908 $ Branch1908 $
         Customer1909 $ Branch1909 $
         Customer1910 $ Branch1910 $
         Customer1911 $ Branch1911 $
         Customer1912 $ Branch1912 $;
cards;
3188,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855
3195,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832	40031612,832,40031612,832,40031612,832,40031612,832,40031612,832
;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

You're missing a comma

 

Data RawTbl;
INFILE DATALINES DLM=',';
input ID Customer1901 $ Branch1901 $
         Customer1902 $ Branch1902 $ 
         Customer1903 $ Branch1903 $
         Customer1904 $ Branch1904 $
         Customer1905 $ Branch1905 $
         Customer1906 $ Branch1906 $
         Customer1907 $ Branch1907 $
         Customer1908 $ Branch1908 $
         Customer1909 $ Branch1909 $
         Customer1910 $ Branch1910 $
         Customer1911 $ Branch1911 $
         Customer1912 $ Branch1912 $;
cards;
3188,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855
3195,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832
;
run;

View solution in original post

1 REPLY 1
PeterClemmensen
Tourmaline | Level 20

You're missing a comma

 

Data RawTbl;
INFILE DATALINES DLM=',';
input ID Customer1901 $ Branch1901 $
         Customer1902 $ Branch1902 $ 
         Customer1903 $ Branch1903 $
         Customer1904 $ Branch1904 $
         Customer1905 $ Branch1905 $
         Customer1906 $ Branch1906 $
         Customer1907 $ Branch1907 $
         Customer1908 $ Branch1908 $
         Customer1909 $ Branch1909 $
         Customer1910 $ Branch1910 $
         Customer1911 $ Branch1911 $
         Customer1912 $ Branch1912 $;
cards;
3188,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855,22339829,855
3195,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832,40031612,832
;
run;

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 500 views
  • 1 like
  • 2 in conversation