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 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 399 views
  • 1 like
  • 2 in conversation