I have a macro that will be initialized on different arrays, but the arrays have different number of variables, thus I was wondering how I would write the do loop to cover the length of both arrays. So the first array has 10 variables but the other array has 20 variables. My goal is do i=1 to (max). (but not sure how to write this in SAS). Thanks
Use the dim() function to get the length of the array.
do i = 1 to dim(array_name);
It will be easier to respond if you post your code.
True, sorry about that. Thanks though!
Is your question answered? If so, please mark as answered.
Hi,
I agree with Arthur, post your code so we can see what your trying to do, not sure why you would want arrays and macros?
Use the dim() function to get the length of the array.
do i = 1 to dim(array_name);
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
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.
Ready to level-up your skills? Choose your own adventure.