How to see a list of currently defined SPSS macros

Does anyone know how to get a list of macros that are currently loaded into memory (i.e. the define-! Enddefine command was run)?
Also, is there a way to see complete macro definitions - from memory?

+4
source share
1 answer

To get a list of already defined macros, use the following syntax:

DISPLAY MACROS.

As far as I know, there is no way to directly get a macro definition (unless you read the syntax files where they are defined).

+4
source

All Articles