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

hi,all

I have a category variable "class" ,I want to create a new variable "NO" which number ariable "class" ,the result as follows:

11.png

Thanks a lot!

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

This would only appear in the log if you did not have your By Statement, which initializes the first. and last. variables. 

View solution in original post

4 REPLIES 4
PeterClemmensen
Tourmaline | Level 20
data have;
input Class Grades;
datalines;
1 367
1 363
1 302
2 349
2 332
2 311
2 311
3 357
3 343
;

data want;
    set have;
    by class;
    if first.Class then No=0;
    No+1;
run;
HannaZhang
Obsidian | Level 7

Actually there are some missing with the variable "class" ,so I tried like follows,but the log

notes that variable first.class uninitialized.Any  solution? thanks

data want;
    set have;
    by class;
    if  Class^=. and  first.Class then No=0;
    No+1;
run;
PeterClemmensen
Tourmaline | Level 20

This would only appear in the log if you did not have your By Statement, which initializes the first. and last. variables. 

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
  • 4 replies
  • 1646 views
  • 0 likes
  • 2 in conversation