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

DATA ONE;
INPUT
@001 NAME $10.
@011 MONTH $CHAR8.
;
cards;
Thomas 2017-01
Ricky 2018-09
;
run;

data two;
set one;
month_1 = input(month,yymmd.);
run;

 

 

I want output in which variable month_1 will be numeric in nature and format is going to be like 2017-01.

 

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Try this

 

DATA ONE;
INPUT name $ month $;
cards;
Thomas 2017-01
Ricky  2018-09
;

data two;
    set one;
    month_1 = input(month, anydtdte.);
    format month_1 yymmd7.;
run;

View solution in original post

1 REPLY 1
PeterClemmensen
Tourmaline | Level 20

Try this

 

DATA ONE;
INPUT name $ month $;
cards;
Thomas 2017-01
Ricky  2018-09
;

data two;
    set one;
    month_1 = input(month, anydtdte.);
    format month_1 yymmd7.;
run;
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
  • 725 views
  • 0 likes
  • 2 in conversation