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

I have a data set with the variables VentUnit1-VentUnit151,

 

I have been attempting to use arrays to flag observations in which VentUnit(i) in ('8N-ICU, '8S-NSICU') and VentUnit(i+1) in ('8N-ICU, '8S-NSICU') such as Line#4 in the screenshot.  I'm having trouble trying to code this with do loops and have a feeling I'm taking the wrong approach. 

 

 VentUnitScreenShot.JPG

 

Any thoughts?

 

Thanks.

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
do i=1 to i=151

This is likely wrong and should  be:

 

do i=1 to dim(unit)-1;

Because you're checking i+1 you can only go up to one less than the dimension and you can use the DIM() function to get the number of elements. 

 

You may also want to set CHECK to 0 at the beginning of the loop but otherwise that seems correct.

 

data lines5;
	set lines4;

	array Unit (*) VentUnit1-VentUnit151;

check=0;

		do i=1 to dim(unit)-1;
			if Unit(i) in ('8N-ICU','8S-NSICU') and Unit(i+1) in ('8N-ICU','8S-NSICU') then check+1;
		end;

run;

 

 

 

View solution in original post

4 REPLIES 4
Reeza
Super User

 I'm having trouble trying to code this with do loops and have a feeling I'm taking the wrong approach. 

 

Can you show us the code you're using?

 


@malmario wrote:

I have a data set with the variables VentUnit1-VentUnit151,

 

I have been attempting to use arrays to flag observations in which VentUnit(i) in ('8N-ICU, '8S-NSICU') and VentUnit(i+1) in ('8N-ICU, '8S-NSICU') such as Line#4 in the screenshot.  I'm having trouble trying to code this with do loops and have a feeling I'm taking the wrong approach. 

 

 VentUnitScreenShot.JPG

 

Any thoughts?

 

Thanks.

 

 


 

malmario
Calcite | Level 5
data lines5;
	set lines4;

	array Unit (*) VentUnit1-VentUnit151;

		do i=1 to i=151;
			if Unit(i) in ('8N-ICU','8S-NSICU') and Unit(i+1) in ('8N-ICU','8S-NSICU') then check+1;
		end;

run;
Reeza
Super User
do i=1 to i=151

This is likely wrong and should  be:

 

do i=1 to dim(unit)-1;

Because you're checking i+1 you can only go up to one less than the dimension and you can use the DIM() function to get the number of elements. 

 

You may also want to set CHECK to 0 at the beginning of the loop but otherwise that seems correct.

 

data lines5;
	set lines4;

	array Unit (*) VentUnit1-VentUnit151;

check=0;

		do i=1 to dim(unit)-1;
			if Unit(i) in ('8N-ICU','8S-NSICU') and Unit(i+1) in ('8N-ICU','8S-NSICU') then check+1;
		end;

run;

 

 

 

malmario
Calcite | Level 5

Thank you Reeza!

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