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

Thanks Quinn; I am being told that 12 is the maximum.  However, what if one didn`t know the max?

mstergia
Calcite | Level 5
Thanks Quinn - that was exactly the problem. What if one didn`t know the array upbound. Is there a way to write the code when you don`t know what that # is?
Quinn
Fluorite | Level 6

1. use COUNTC() function.

2. use the variable prefix as the array name.

Hope it helps.

L.L.

 

proc sql;

select max(countc(TrainingTopic,';'))+1  into: max_ct from ...;

quit;

 

data ... ;

...

array Topic(&max_ct) $100 ;

...

 

 

 

 

mstergia
Calcite | Level 5

Wondering, what does the * do rather than putting the max # of observations in the () in :  array parsed_vars(*) new_var1-new_var6;

 

Trying to understand the diff between putting parsed_vars(*) vs. parsed_vars(6)?

 

Also, what if you didn`t know the max # of observations?  what would you do in that case if you only wanted the first 6?

 

Thanks!

 

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 18 replies
  • 90754 views
  • 12 likes
  • 9 in conversation