BookmarkSubscribeRSS Feed
thanikondharish
Fluorite | Level 6

data main ;
infile cards dlm=',' ;
input name $33. age ;
cards ;
dfhis dfhwejw kssdhf,22
sdfhlas ksglk saglas jhassdfjgish,23
dhjs sdhf,22
;

when i run above program it gives wrong data 

how to solve that one?

3 REPLIES 3
thanikondharish
Fluorite | Level 6

i got

LinusH
Tourmaline | Level 20
You got what?
If a solution please share.
Data never sleeps
ChrisNZ
Tourmaline | Level 20

Like this?

data main ;
infile cards dlm=',' ;
input name : $33. age ;
cards ;
dfhis dfhwejw kssdhf,22
sdfhlas ksglk saglas jhassdfjgish,23
dhjs sdhf,22
run;

Note the colon.

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