BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi all,

I am trying to write a macro function that produces combination of strings within a macro variable

For instance when
1.Macr_var = a;
Then call
%calc(a);

2.Macr_var = a b;

Then call

%calc(a b);
%calc(a);
%calc(b);


3. Macr_var = a b c;

Then call

%calc(a b c);
%calc(a);
%calc(b);
%calc(c);
%calc(a b);
%calc(a c);
%calc(b c);

4. Macr_var = a b c d;
Then call

%calc(a b c d);
%calc(a);
%calc(b);
%calc(c);
%calc(d);
%calc(a b);
%calc(a c);
%calc(a d);
%calc(b c);
%calc(b d);
%calc(c d)
%calc(a b d);
%calc(a c d);
%calc(b c d);

I was thinking of using do loops but it seems very confusing on how to implement something like this in loops.

Would be great if you guys could provide some kind of algorithm that I could use

Thanks,

L
1 REPLY 1
data_null__
Jade | Level 19
SAS has all the tools you need look a COMB and LEXCOMB functions/call routines.

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

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
  • 1 reply
  • 1169 views
  • 0 likes
  • 2 in conversation