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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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