BookmarkSubscribeRSS Feed
Phill
Calcite | Level 5

Hey there,

I looked around and I found a few suggestions such as https://communities.sas.com/thread/30121?start=0&tstart=0. However, I have a slightly different scenario and I cannot figure it out by myself.

The observations are saved in a SAS dataset in one char variable like 5' 10, 6' 4" ... etc. The problem I ran into most of the time were unbalanced quotation marks.

The final goal is it to convert the data into a numeric value (total inches or cm) to open it up for numeric procs for better analysis.


Any suggestions are very much appreciated!bas

2 REPLIES 2
Reeza
Super User

Use KSharp's solution from the tread above but change your scan options, to reflect your data.

Probably work on getting the scan to work properly first is a good place to start.

Tom
Super User Tom
Super User

If the data consistently includes FEET value then you could use something like this:

data check;

input charvar $10.;

inches = sum

(12*input(scan(charvar,1,'"'''),5.)

,input(scan(charvar,2,'"'''),5.)

)

;

put (inches charvar) (=);

cards;

5' 8"

4'

run;

inches=68 charvar=5' 8"

inches=48 charvar=4'

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