BookmarkSubscribeRSS Feed
Komal2
Calcite | Level 5

I would like to save all the macros permanently defined as part of the complete exercise and list all the macros. I have 6 macros which I want to save and retrieve in this session:

%macro one(a,b,c)
%macro gchart(dseti,Weight,Gender)
%macro plot(dsetin,height,weight)
%macro one(a,b,c,strtpt,endpt)
%macro test
%macro name(dsetin,year,revenue)
%macro import_myfile(i=)

I have the code below and the error message follows it.

options mstored sasmstore=macross; 
libname mjstore "C:\Users\komal\Desktop\Advanced SAS"; 
 proc catalog cat=mjstore.macross;
      contents;
      title "Default Storage of SAS Macros";
     quit

Error: Catalog "MJSTORE.MACROSS" not found

Please let me know your advice on how to solve it. Thank you for your time.

3 REPLIES 3
Kurt_Bremser
Super User

This:

Error: Catalog "MJSTORE.MACROSS" not found

tells you that there is no file

macross.sas7bcat

in directory

C:\Users\komal\Desktop\Advanced SAS

Maybe you wanted to use

MJSTORE.MACROS

?

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Avoid using compiled catalogs, save macro's as text files and include them or put them as part of the auto call.  Compiled libraries are bad, compatability between systems/bits is poor, code is hidden making updating or general use so much harder.  

Reeza
Super User

If your macros are not declared with the SOURCE option it's hard to get the code back out. Did you declare them with the SOURCE option? 

 

 

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 986 views
  • 0 likes
  • 4 in conversation