BookmarkSubscribeRSS Feed
lpy0521
Fluorite | Level 6

Hey there,

 

how can I make this happening in SAS? I have a columns called points and I would like to create sequential group id for consecutive null values

 

pointsgroup
1 
1 
.1
.1
1 
1 
.2
.2
1 
1 
.3
.3
.3

 

Thanks,

2 REPLIES 2
s_lassen
Meteorite | Level 14

Something like this?

data want;
  set have;
  if _N_=1 and missing(points) then _group=1;
  if missing(points) and not missing(lag(points)) then _group+1;
  if missing(points) then group=_group;
  drop _group;
run;
Ksharp
Super User
data have;
input points;
cards;
1
1
.
.
1
1
.
.
1
1
.
.
.
;

data want;
 set have;
 by points notsorted;
 if first.points and missing(points) then n+1;
 if missing(points) then group=n;
 drop n;
 run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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