BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi. I would like to initialise my array by assigning each element with a zero value. I can do this through a do loop but I thought that I could do something neater / better by doing something like this:

Array Var{5} (0 0 0 0 0);
or Array Var{5} (5*0); ??

but this seems to make the array possess some sort of RETAIN feature which is not what I want. Any ideas?
2 REPLIES 2
LinusH
Tourmaline | Level 20
From on-line doc:
"When any (or all) elements are assigned initial values, all elements behave as if they were named on a RETAIN statement."

In this case, it would nice to say something like:

var{*} = 0;

but you can't. So I guess you are stuck with doing a do loop.

/Linus
Data never sleeps
data_null__
Jade | Level 19
I have had some success with this using SET with the POINT= option.

This example is completely contrived but it may serve well enough to illustrate a way to initialize a list of variables without looping over all the elements of an array.

[pre]
data initArray;
array v[5];
retain v 0;
run;
data workWithArray;
array v[5];
do i = 1 to 6;
if i in(1,2,4) then set initArray point=point;
else do j = 1 to dim(v);
v = ranuni(1);
end;
output;
end;
retain point 1;
stop;
run;
proc print;
run;
[pre]

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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