BookmarkSubscribeRSS Feed
hyqwel
Calcite | Level 5
%macro aaaa();
data a;
array new{4} score1-score4;
%do i=1 %to dim(new) %by 1;
new{i}=10;
%end;

proc print data=a;
run;
%mend aaaa;
%aaaa();

log window:
MPRINT(AAAA): array new{4} score1-score4;
ERROR: Required operator not found in expression: dim(new)
ERROR: The %TO value of the %DO I loop is invalid.
ERROR: The macro AAAA will stop executing.
3 REPLIES 3
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Suggest you use a macro variable declared with a %LET statement to identify the maximum array element/variable.

Scott Barry
SBBWorks, Inc.

Recommended Google advanced search argument this topic/post:

using macro variables site:sas.com
RickM
Fluorite | Level 6
I could be wrong but I think you want to use the regular data step do loop instead of %do. %Do is something you should use if you want to iterate blocks of code such as series of data steps or procs. I dont think %do can access the array in the data step.
hyqwel
Calcite | Level 5
You are right. 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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 1387 views
  • 0 likes
  • 3 in conversation