BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ronein
Onyx | Level 15

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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 582 views
  • 1 like
  • 2 in conversation