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:
What can i do to avoid this truncation?
Thanks,
Paul
Remove the colon 🙂
data Testing;
infile datalines;
input Channel $30.;
cards;
C&TM With All
Rebroke
J&T Appliance
;
And if you want to avoid skipping over short lines when applying @PeterClemmensen 's solution to an external file, add the truncover option to the infile statement.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.