BookmarkSubscribeRSS Feed
chayo
Calcite | Level 5
IDcol1col2col3col4col5col6col7col8col9col10
1012567891011
201235678910
305678910111213

Hi- I'm new to this form, I have been looking into this for a long time with no success.  I need to write a sas code that loop through all the columns and return ID and the Value from Col(x) where Col(x+1)-Col(x) > 1.

The output would be like this:

IDCol
12 (since Col4 - Col3 >1)
210the last column in case there are no gaps
30 (since Col2-Col1 >1)

please advise...

6 REPLIES 6
Reeza
Super User

Create an array and loop through it using a break statement to stop at the first difference.

You'll want to start your loop at two and go from there.

SAS Learning Module: Working across variables

chayo
Calcite | Level 5

thanks. I was able to write this using loops in vba. I'm new to SAS, that's why I'm struggling with the syntax.  I will continue looking into it. thanks

Reeza
Super User

Since you're from Microsoft land and I don't want you to hate SAS here's some untested code:

data have;

array col(10) col1-col10;

flag=0;

do i=2 to 10 while (flag ne 0);

if col-col[i-1]>1 then do;

flag=1;

col=i;

end;

end;

run;

chayo
Calcite | Level 5

lol. appreciate it.  I can follow this code, i will test it soon. col=i does not appear correct, assigning it an integer?

Reeza
Super User

i is the variable counter, so its an interger 1 to 10.

I just noticed that you're using VBA array counting though, 0 to 9 ish, so you may want to use i-1 instead...you can test it out.

chayo
Calcite | Level 5

works great. i appreciate the help

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