Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8908989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:19:26+00:00 2026-06-15T03:19:26+00:00

Hi I have a program to use one macro to call another one. I

  • 0

Hi I have a program to use one macro to call another one.

I have two month(jun12 and jul12) and each month has two parts(1 & 2), I want to do a loop which I construct a macro called”Loop”, Inside it, I constructed a Array, and used Do comment do call a macro “try”.

Seems like it doesn’t work. Can someone help me with it? Thank you!

 LIBNAME EC100006 "G:\sample";
%MACRO try(month=,part=);
      ...FROM EC100006.monthitsum&month.lag&part AS t1
%MEND try;

%Macro test;
    ARRAY Mon(2) jun12 jul12;
    %Do i=1 %to 2;
        %Do j=1 %to 2
            %try(month=Mon(i),part=j)
        %End
    %End
%Mend test;

%test
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T03:19:27+00:00Added an answer on June 15, 2026 at 3:19 am

    You can’t have an array of macro variables.

    The simplest way to repeatedly call a macro with a list of parameters is to make a dataset with those parameters and call it from the dataset, either with CALL EXECUTE or using PROC SQL to create a macro list of macro calls.

    data call;
    input month $ part;
    datalines;
    jun12 1 
    jul12 2
    ;;;;
    run;
    
    proc sql;
    select cats('%try(month=',month,',part=',part,')') into :mcalllist 
      separated by ' ' 
      from call;
    quit;
    
    &mcalllist;
    

    That only works if you have less than 20,000 characters worth of calls or so – if it’s more than that you need to try a different option (%include file or call execute).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

so in my program I have parts where I use try catch blocks like
I have program where client peers communicate with each other via TCP-IP. When one
I have written a program that use one single connection with prepared statements. So
I have a program that makes use of the following method to get a
I have a flight reservation program use mssql ,For reserving flights i want to
Suppose I have a program that initializes a global variable for use by threads,
I have a program that creates semaphore. But when i try to use SETALL,
I have my own installer program which I use to install several applications I
I have a unstable program that kept crashing randomly, I could use a bash
To access a remote database, I first have to use a program called Shrew

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.