BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Walternate
Obsidian | Level 7

Hi,

I have a dataset in which I've created an age variable using a date of birth variable and an "age as of" variable (which I created as well), like this:

/*Calculate age from DOB*/

data want_age;

set have;

ageasof='01NOV2012'D;

run;

DATA create_age;

set want_age;

age=floor(yrdif(datepart(dob), ageasof, age));

run;

The code runs fine and seems to calculate age correctly; however, I get a message after the second step saying that Numeric values have been converted to character values. I want age to be a numeric variable, so this is problematic. However, when I run a proc contents, it says age is already numeric, and when I go to the next step which uses values of age to create age categories, I treat age as numeric and it works fine. I'm confused about why I'm getting the message re: age being converted to character values when that doesn't actually seem to be the case.

Any help is much appreciated.

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

If you're using the third parameter to YRDIF, it should be character.  Try putting "age" in quotes inside the function.

View solution in original post

1 REPLY 1
Astounding
PROC Star

If you're using the third parameter to YRDIF, it should be character.  Try putting "age" in quotes inside the function.

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
  • 1 reply
  • 1486 views
  • 0 likes
  • 2 in conversation