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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 1181 views
  • 0 likes
  • 3 in conversation