BookmarkSubscribeRSS Feed
frupaul
Quartz | Level 8

Hi everyone,

 

I am trying to create a field - channel - which holds all the values below the datalines statement in the code below. 

data Testing;
   infile datalines;
   input Channel :$30.;
cards;
C&TM With All
Rebroke
J&T Appliance
;

I am expecting the first record of channel to be 'C&TM With All', but it appeasrs truncated as in below:

Screenshot 2019-07-03 at 11.47.52.png

 

What can i do to avoid this truncation?

 

Thanks,

 

Paul

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

Remove the colon 🙂

 

data Testing;
   infile datalines;
   input Channel $30.;
cards;
C&TM With All
Rebroke
J&T Appliance
;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 2 replies
  • 904 views
  • 0 likes
  • 3 in conversation