SAS+Programming+Fast+Track+ Cource+Notes
SAS+Programming+Fast+Track+ Cource+Notes
3 Macro Language
Reference
SAS Documentation
The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2011. SAS 9.3 Macro Language: Reference. Cary, NC: SAS
Institute Inc.
SAS 9.3 Macro Language: Reference
Copyright 2011, SAS Institute Inc., Cary, NC, USA
ISBN 978-1-60764-894-9
All rights reserved. Produced in the United States of America.
For a hardcopy book: No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means,
electronic, mechanical, photocopying, or otherwise, without the prior written permission of the publisher, SAS Institute Inc.
For a Web download or e-book:Your use of this publication shall be governed by the terms established by the vendor at the time you acquire this
publication.
The scanning, uploading, and distribution of this book via the Internet or any other means without the permission of the publisher is illegal and
punishable by law. Please purchase only authorized electronic editions and do not participate in or encourage electronic piracy of copyrighted
materials. Your support of others' rights is appreciated.
U.S. Government Restricted Rights Notice: Use, duplication, or disclosure of this software and related documentation by the U.S. government is
subject to the Agreement with SAS Institute and the restrictions set forth in FAR 52.22719 Commercial Computer Software-Restricted Rights
(June 1987).
SAS Institute Inc., SAS Campus Drive, Cary, North Carolina 27513.
1st electronic book, July 2011
1st printing, July 2011
SAS Publishing provides a complete selection of books and electronic products to help customers use SAS software to its fullest potential. For
more information about our e-books, e-learning products, CDs, and hard-copy books, visit the SAS Publishing Web site at
support.sas.com/publishing or call 1-800-727-3228.
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other
countries. indicates USA registration.
Other brand and product names are registered trademarks or trademarks of their respective companies.
Contents
About This Book . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . vii
What's New in the SAS 9.3 Macro Language Facility . . . . . . . . . . . . . . . . . . . . . . . . . . . ix
Recommended Reading . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xi
PART 1
iv Contents
How the Macro Processor Evaluates Logical Expressions . . . . . . . . . . . . . . . . . . . . . . . 76
Chapter 7 Macro Quoting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
Macro Quoting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
Deciding When to Use a Macro Quoting Function and Which Function to Use . . . . . . 83
%STR and %NRSTR Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
%BQUOTE and %NRBQUOTE Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
Referring to Already Quoted Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
Deciding How Much Text to Mask with a Macro Quoting Function . . . . . . . . . . . . . . . 91
%SUPERQ Function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
Summary of Macro Quoting Functions and the Characters that They Mask . . . . . . . . . 94
Unquoting Text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
How Macro Quoting Works . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
Other Functions That Perform Macro Quoting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
Chapter 8 Interfaces with the Macro Facility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
Interfaces with the Macro Facility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
DATA Step Interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102
Using SAS Language Functions in the DATA Step and Macro Facility . . . . . . . . . . . 105
Interfaces with the SQL Procedure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106
Interfaces with the SAS Component Language . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
SAS/CONNECT Interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 110
Chapter 9 Storing and Reusing Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113
Storing and Reusing Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113
Saving Macros in an Autocall Library . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 114
Saving Macros Using the Stored Compiled Macro Facility . . . . . . . . . . . . . . . . . . . . . 117
Chapter 10 Macro Facility Error Messages and Debugging . . . . . . . . . . . . . . . . . . . . . . . . . . 119
General Macro Debugging Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 120
Troubleshooting Your Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
Debugging Techniques . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134
Chapter 11 Writing Efficient and Portable Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141
Writing Efficient and Portable Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141
Keeping Efficiency in Perspective . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 142
Writing Efficient Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 142
Writing Portable Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 148
Chapter 12 Macro Language Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
Macro Language Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
Macro Statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 156
Macro Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
Automatic Macro Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 164
Interfaces with the Macro Facility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167
Selected Autocall Macros Provided with SAS Software . . . . . . . . . . . . . . . . . . . . . . . 168
Selected System Options Used in the Macro Facility . . . . . . . . . . . . . . . . . . . . . . . . . 170
PART 2
173
Contents
PART 3
Appendices
361
vi Contents
vii
syntax components
style conventions
Syntax Components
The components of the syntax for most language elements include a keyword and
arguments. For some language elements only a keyword is necessary. For other language
elements the keyword is followed by an equal sign (=).
Note: In most cases, example code in SAS documentation is written in lowercase with a
monospace font. You can use uppercase, lowercase, or mixed case in the code that
you write.
Style Conventions
The style conventions that are used in documenting SAS syntax include uppercase bold,
uppercase, and italic:
UPPERCASE BOLD
identifies SAS keywords such as the names of functions or statements. In the
following example, the keyword ERROR is written in uppercase bold:
ERROR<message>;
UPPERCASE
identifies arguments that are literals. In the following example of the CMPMODEL=
system option, the literals include BOTH, CATALOG, and XML:
CMPMODEL = BOTH | CATALOG | XML
ix
Overview
The Macro Language Facility has the following enhancements:
new automatic macro variables that enable you to reduce the amount of text that is
needed to perform common tasks
new macro system options that enable you to define and redefine macros and to
better control their execution
Macro Functions
%SYSMACEXEC
indicates whether a macro is currently executing.
%SYSMACEXIST
indicates whether there is a macro definition in the WORK.SASMACR catalog.
%SYSMEXECDEPTH
returns the depth of nesting from the point of call.
%SYSMEXECNAME
returns the name of the macro executing at a nesting level.
Macro Statements
%SYSMSTORECLEAR
closes stored compiled macros and clears the SASMSTORE= library.
%SYSMACDELETE
deletes a macro definition from the WORK.SASMACR catalog.
xi
Recommended Reading
Part 1
Chapter 1
Chapter 1
macro language
is the syntax that you use to communicate with the macro processor
When SAS compiles program text, two delimiters trigger macro processor activity:
&name
refers to a macro variable. Replacing Text Strings Using Macro Variables on page
4 explains how to create a macro variable. The form &name is called a macro
variable reference.
%name
refers to a macro. Generating SAS Code Using Macros on page 5 explains how
to create a macro. The form %name is called a macro call.
The text substitution produced by the macro processor is completed before the program
text is compiled and executed. The macro facility uses statements and functions that
resemble the statements and functions that you use in the DATA step. An important
difference, however, is that macro language elements can enable only text substitution
and are not present during program or command execution.
Note: Three SAS statements begin with a % that are not part of the macro facility.
These elements are the %INCLUDE, %LIST, and %RUN statements in SAS
Statements: Reference
The following graphic explains the syntax used in this document:
Syntax Conventions
1
2
3
4
5
6
Now you can use the macro variable CITY in SAS statements where you would like the
text New Orleans to appear. You refer to the variable by preceding the variable name
with an ampersand (&), as in the following TITLE statement:
title "Data for &city";
The macro processor resolves the reference to the macro variable CITY:
title "Data for New Orleans";
A macro variable can be defined within a macro definition or within a statement that is
outside a macro definition (called open code).
Note: The title is enclosed in double quotation marks. In quoted strings in open code,
the macro processor resolves macro variable references within double quotation
marks but not within single quotation marks.
A %LET statement in open code (outside a macro definition) creates a global macro
variable that is available for use anywhere (except in DATALINES or CARDS
statements) in your SAS code during the SAS session in which the variable was created.
There are also local macro variables, which are available for use only inside the macro
definition where they are created. See Scope of Macro Variables on page 43 for more
information about global and local macro variables.
Macro variables are not subject to the same length limits as SAS data set variables.
However, if the value that you want to assign to a macro variable contains certain special
characters (for example, semicolons, quotation marks, ampersands, and percent signs) or
mnemonics (for example, AND, OR, or LT), you must use a macro quoting function to
mask the special characters. Otherwise, the special character or mnemonic might be
misinterpreted by the macro processor. See Macro Quoting on page 80 for more
information.
While macro variables are useful for simple text substitution, they cannot perform
conditional operations, DO loops, and other more complex tasks. For this type of work,
you must define a macro.
Chapter 1
This macro is named DSN. Newdata is the text of the macro. A string inside a macro is
called constant text or model text because it is the model, or pattern, for the text that
becomes part of your SAS program.
To call (or invoke) a macro, precede the name of the macro with a percent sign (%):
%macro-name
Although the call to the macro looks somewhat like a SAS statement, it does not have to
end in a semicolon.
For example, here is how you might call the DSN macro:
title "Display of Data Set %dsn";
The macro processor executes the macro DSN, which substitutes the constant text in the
macro into the TITLE statement:
title "Display of Data Set Newdata";
Note: The title is enclosed in double quotation marks. In quoted strings in open code,
the macro processor resolves macro invocations within double quotation marks but
not within single quotation marks.
The macro DSN is exactly the same as the following coding:
%let dsn=Newdata;
title "Display of Data Set &dsn";
So, in this case, the macro approach does not have any advantages over the macro
variable approach. However, DSN is an extremely simple macro. As you will see in later
examples, macros can do much more than the macro DSN does.
You can use whichever type comment that you prefer in your macro code, or use both
types as in the previous example.
Chapter 1
When the macro executes, the macro processor matches the values specified in the
macro call to the parameters in the macro definition. (This type of parameter is called a
keyword parameter.)
Macro execution produces the following code:
proc plot;
plot income*age;
run;
proc plot;
plot income*yrs_educ;
run;
Using parameters has several advantages. First, you can write fewer %LET statements.
Second, using parameters ensures that the variables never interfere with parts of your
program outside the macro. Macro parameters are an example of local macro variables,
which exist only during the execution of the macro in which they are defined.
In this example, the macro WHATSTEP uses keyword parameters, which are set to
default null values. When you call a macro that uses keyword parameters, specify the
parameter name followed by an equal sign and the value that you want to assign the
parameter. Here, the macro WHATSTEP is called with INFO set to print and
MYDATA set to grocery.
%whatstep(info=print,mydata=grocery)
Because values in the macro processor are case sensitive, the previous program does not
work if you specify PRINT instead of print. To make your macro more robust, use the
%UPCASE macro function. For more information, see %UPCASE and %QUPCASE
Functions on page 275.
For more information, see %MACRO Statement on page 304 and %MEND
Statement on page 310.
The macro NAMES creates a series of names by concatenating the value of the
parameter NAME and the value of the macro variable N. You supply the stopping value
for N as the value of the parameter NUMBER, as in the following DATA statement:
data %names(name=dsn,number=5);
Note: You can also execute a %DO loop conditionally with %DO %WHILE and %DO
%UNTIL statements. For more information, see %DO %WHILE Statement on
page 292 and %DO %UNTIL Statement on page 291.
The period is a delimiter at the end of the reference &NAME. The macro processor uses
the delimiter to distinguish the reference &NAME followed by the letter X from the
reference &NAMEX. Here is an example of calling the macro NAMESX in a DATA
statement:
data %namesx(name=dsn,number=3);
See Macro Variables on page 19 for more information about using a period as a
delimiter in a macro variable reference.
10
Chapter 1
11
Chapter 2
12
Chapter 2
Figure 2.1
SCL Compiler
Macro Processor
Command Processor
Word Scanner
Input Stack
data sales (drop=lastyr);
infile inl;
input ml-ml2 lastyr; total=ml2+lastyr;
run;
%let list=ml m7 m12 total;
proc print;
var &list;
run;
Display Manager
Submit Command
SCL Compile
Command
Batch or
Noninteractive
Submission
Display Manager
Command Line
Once a program reaches the input stack, SAS transforms the stream of characters into
individual tokens. These tokens are transferred to different parts of SAS for processing,
such as the DATA step compiler and the macro processor. Knowing how SAS
recognizes tokens and how they are transferred to different parts of SAS will help you
understand how the various parts of SAS and the macro processor work together. Also
how to control the timing of macro execution in your programs. The following sections
show you how a simple program is tokenized and processed.
13
Literal
a string of characters enclosed in quotation marks.
Number
digits, date values, time values, and hexadecimal numbers.
Name
a string of characters beginning with an underscore or letter.
Special
any character or group of characters that have special meaning to SAS. Examples of
special characters include: * / + - ** ; $ ( ) . & % =
Figure 2.2 The Sample Program before Tokenization
Word Scanner
Input Stack
data sales (drop=lastyr);
infile inl;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
The first SAS statement in the input stack in the preceding figure contains eight tokens
(four names and four special characters).
data sales(drop=lastyr);
When the word scanner finds a blank or the beginning of a new token, it removes a
token from the input stack and transfers it to the bottom of the queue.
In this example, when the word scanner pulls the first token from the input stack, it
recognizes the token as the beginning of a DATA step. The word scanner triggers the
DATA step compiler, which begins to request more tokens. The compiler pulls tokens
from the top of the queue, as shown in the following figure.
14
Chapter 2
Figure 2.3
Compiler
data
sales
(drop
=
lastyr
Input Stack
);
infile inl;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
The compiler continues to pull tokens until it recognizes the end of the DATA step (in
this case, the RUN statement), which is called a DATA step boundary, as shown in the
following figure. When the DATA step compiler recognizes the end of a step, the step is
executed, and the DATA step is complete.
Figure 2.4
Compiler
DATA SALES ( DROP = LASTYR ) ;
INFILE IN1;
INPUT M1 - M12 LASTYR ;
RUN
Input Stack
In most SAS programs with no macro processor activity, all information that the
compiler receives comes from the submitted program.
15
Word Scanner
Symbol Table
SYSDAY
Friday
Macro Processor
Input Stack
%let file=inl;
data sales (drop=lastyr);
infile &file;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
Whenever the word scanner encounters a macro trigger, it sends information to the
macro processor. A macro trigger is either an ampersand (&) or percent sign (%)
followed by a nonblank character. As it did in the previous example, the word scanner
begins to process this program by examining the first characters in the input stack. In
this case, the word scanner finds a percent sign (%) followed by a nonblank character.
The word scanner recognizes this combination of characters as a potential macro
language element, and triggers the macro processor to examine % and LET, as shown in
the following figure.
Figure 2.6
Word Scanner
Symbol Table
SYSDAY
Friday
Macro Processor
Input Stack
let file=inl;
data sales (drop=lastyr);
infile &file;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
When the macro processor recognizes a macro language element, it begins to work with
the word scanner. In this case, the macro processor removes the %LET statement, and
writes an entry in the symbol table, as shown in the following figure.
16
Chapter 2
Figure 2.7
Word Scanner
Symbol Table
SYSDAY
FILE
Friday
Macro Processor
Input Stack
in1 ;
data sales (drop=lastyr);
infile &file;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
From the time the word scanner triggers the macro processor until that macro processor
action is complete, the macro processor controls all activity. While the macro processor
is active, no activity occurs in the word scanner or the DATA step compiler.
When the macro processor is finished, the word scanner reads the next token (the DATA
keyword in this example) and sends it to the compiler. The word scanner triggers the
compiler, which begins to pull tokens from the top of the queue, as shown in the
following figure.
Figure 2.8
Word Scanner
data
sales
(drop
=
lastyr)
Symbol Table
SYSDAY
FILE
Friday
in1
Macro Processor
Input Stack
;
infile &file;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
As it processes each token, SAS removes the protection that the macro quoting functions
provide to mask special characters and mnemonic operators. For more information, see
Macro Quoting on page 80.
If the word scanner finds an ampersand followed by a nonblank character in a token, it
triggers the macro processor to examine the next token, as shown in the following figure.
17
Word Scanner
infile
&
Friday
in1
Macro Processor
Input Stack
file;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
The macro processor examines the token and recognizes a macro variable that exists in
the symbol table. The macro processor removes the macro variable name from the input
stack and replaces it with the text from the symbol table, as shown in the following
figure.
Figure 2.10
Word Scanner
Friday
in1
infile
Macro Processor
Input Stack
in1 ;
input ml-ml2 lastyr;
total=ml2+lastyr;
run;
The compiler continues to request tokens, and the word scanner continues to supply
them, until the entire input stack has been read as shown in the following figure.
18
Chapter 2
Figure 2.11
Word Scanner
run
;
Symbol Table
SYSDAY
FILE
Friday
in1
Macro Processor
Input Stack
If the end of the input stack is a DATA step boundary, as it is in this example, the
compiler compiles and executes the step. SAS then frees the DATA step task. Any
macro variables that were created during the program remain in the symbol table. If the
end of the input stack is not a step boundary, the processed statements remain in the
compiler. Processing resumes when more statements are submitted to the input stack.
19
Chapter 3
Macro Variables
Macro Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
Macro Variables Defined by the Macro Processor . . . . . . . . . . . . . . . . . . . . . . . . . . 20
Macro Variables Defined by Users . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
Overview for Defining Macro Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
Creating Macro Variables and Assigning Values . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
Using Macro Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
Macro Variable Reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
Combining Macro Variable References with Text . . . . . . . . . . . . . . . . . . . . . . . . . . 28
Delimiting Macro Variable Names within Text . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
Creating a Period to Follow Resolved Text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
Displaying Macro Variable Values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
Referencing Macro Variables Indirectly . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
Using an Expression to Generate a Reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
Generating a Series of Macro Variable References with a Single Macro Call . . . . 31
Using More Than Two Ampersands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
Manipulating Macro Variable Values with Macro Functions . . . . . . . . . . . . . . . . . 32
Macro Variables
Macro variables are tools that enable you to dynamically modify the text in a SAS
program through symbolic substitution. You can assign large or small amounts of text to
macro variables, and after that, you can use that text by simply referencing the variable
that contains it.
Macro variable values have a maximum length of 65,534 characters. The length of a
macro variable is determined by the text assigned to it instead of a specific length
declaration. So its length varies with each value that it contains. Macro variables contain
only character data. However, the macro facility has features that enable a variable to be
evaluated as a number when it contains character data that can be interpreted as a
number. The value of a macro variable remains constant until it is specifically changed.
Macro variables are independent of SAS data set variables.
Note: Only printable characters should be assigned to macro variables. Non-printable
values that are assigned to macro variables can cause unpredictable results.
20
Chapter 3
Macro Variables
Macro variables defined by macro programmers are called user-defined macro variables.
Those defined by the macro processor are called automatic macro variables. You can
define and use macro variables anywhere in SAS programs, except within data lines.
When a macro variable is defined, the macro processor adds it to one of the program's
macro variable symbol tables. When a macro variable is defined in a statement that is
outside a macro definition (called open code) or when the variable is created
automatically by the macro processor (except SYSPBUFF), the variable is held in the
global symbol table, which the macro processor creates at the beginning of a SAS
session. When a macro variable is defined within a macro and is not specifically defined
as global, the variable is typically held in the macro's local symbol table, which SAS
creates when the macro starts executing. For more information about symbol tables, see
SAS Programs and Macro Processing on page 11 and Scopes of Macro Variables on
page 43.
When it is in the global symbol table, a macro variable exists for the remainder of the
current SAS session. A variable in the global symbol table is called a global macro
variable. This variable has global scope because its value is available to any part of the
SAS session (except in CARDS or DATALINES statements). Other components of SAS
might create global macro variables, but only those components created by the macro
processor are considered automatic macro variables.
When it is in a local symbol table, a macro variable exists only during execution of the
macro in which it is defined. A variable in a local symbol table is called a local macro
variable. It has local scope because its value is available only while the macro is
executing. SAS Programs and Macro Processing on page 11 contains figures that
illustrate a program with a global and a local symbol table.
You can use the %PUT statement to view all macro variables available in a current SAS
session. See %PUT Statement on page 310 and also in Macro Facility Error
Messages and Debugging on page 120.
If the current SAS session is invoked on December 16, 2011, macro variable resolution
causes SAS to receive this statement:
FOOTNOTE "Report for Friday, 16DEC2011";
Automatic macro variables are often useful in conditional logic such as a %IF statement
with actions determined by the value that is returned. For more information, see %IF%THEN/%ELSE Statement on page 296.
You can assign values to automatic macro variables that have read and write status.
However, you cannot assign a value to an automatic macro variable that has read-only
status. The following table lists the automatic macro variables that are created by the
SAS macro processor and their read and /write status.
Use %PUT _AUTOMATIC_ to view all available automatic macro variables.
21
There are also system-specific macro variables that are created only on a particular
platform. These are documented in the host companion, and common ones are listed in
Writing Efficient and Portable Macros on page 141. Other SAS software products
also provide macro variables, which are described in the documentation for the product
that uses them. Neither of these types of macro variables are considered automatic macro
variables.
Table 3.1 Automatic Macro Variables by Category
Status
Variable
Contains
Read and
Write
SYSBUFFR
SYSCC
SYSCMD
SYSDEVIC
SYSDMG
SYSDSN
SYSFILRC
SYSLAST
SYSLCKRC
SYSLIBRC
SYSLOGAPPLNAME
SYSMSG
SYSPARM
SYSPBUFF
SYSRC
SYSADDRBITS
SYSCHARWIDTH
SYSDATE
Read-only
22
Chapter 3
Macro Variables
Status
Variable
Contains
SYSDATE9
SYSDAY
SYSENCODING
SYSENDIAN
SYSENV
SYSERR
SYSERRORTEXT
SYSHOSTNAME
SYSINDEX
SYSINFO
SYSJOBID
SYSMACRONAME
SYSMENV
SYSNCPU
SYSNOBS
SYSODSESCAPECHAR
SYSODSPATH
SYSPROCESSID
SYSPROCESSNAME
SYSPROCNAME
SYSSCP
SYSSCPL
23
Variable
Contains
SYSSITE
SYSSIZEOFLONG
SYSSIZEOFPTR
SYSSIZEOFUNICODE
SYSSTARTID
SYSSTARTNAME
SYSTCPIPHOSTNAME
SYSTIME
SYSUSERID
SYSVER
SYSVLONG
SYSVLONG4
SYSWARNINGTEXT
24
Chapter 3
Macro Variables
For a complete list of reserved words in the macro language, see Reserved Words in
the Macro Facility on page 363. If you assign a macro variable name that is not valid,
an error message is printed in the SAS log.
You can use %PUT _ALL_ to view all user-created macro variables.
DSNAME is the name of the macro variable. Newdata is the value of the macro
variable DSNAME. The value of a macro variable is simply a string of characters. The
characters can include any letters, numbers, or printable symbols found on your
keyboard, and blanks between characters. The case of letters is preserved in a macro
variable value. Some characters, such as unmatched quotation marks, require special
treatment, which is described later.
If a macro variable already exists, a value assigned to it replaces its current value. If a
macro variable or its value contains macro triggers (% or &), the trigger is evaluated
before the value is assigned. In the following example, &name is resolved to Cary and
then it is assigned as the value of city in the following statements:
%let name=Cary;
%let city=&name;
Generally, the macro processor treats alphabetic characters, digits, and symbols (except
& and %) as characters. It can also treat & and % as characters using a special treatment,
which is described later. It does not make a distinction between character and numeric
values as the rest of SAS does. (However, the %EVAL Function on page 243 and
%SYSEVALF Function on page 263 can evaluate macro variables as integers or
floating point numbers.)
Macro variable values can represent text to be generated by the macro processor or text
to be used by the macro processor. Values can range in length from 0 to 65,534
characters. If you omit the value argument, the value is null (0 characters). By default,
leading and trailing blanks are not stored with the value.
In addition to the %LET statement, the following list contains other features of the
macro language that create macro variables:
%GLOBAL statement
%INPUT statement
%LOCAL statement
%MACRO statement
%WINDOW statement
The following table describes how to assign a variety of types of values to macro
variables.
25
Assign
Values
Constant text
A character string. The following statements show several ways that the
value maple can be assigned to macro variable STREET. In each case, the
macro processor stores the five-character value maple as the value of
STREET. The leading and trailing blanks are not stored.
%let street=maple;
%let street=
%let street=maple
maple;
;
Note: Quotation marks are not required. If quotation marks are used, they
become part of the value.
Digits
The appropriate digits. This example creates the macro variables NUM and
TOTALSTR:
%let num=123;
%let totalstr=100+200;
The macro processor does not treat 123 as a number or evaluate the
expression 100+200. Instead, the macro processor treats all the digits as
characters.
Arithmetic
expressions
A macro variable
reference
This example shows multiple macro references that are part of a text
expression. The macro processor attempts to resolve text expressions before
it makes the assignment. Thus, the macro processor stores the value of
macro variable ADDRESS as 123 Maple Avenue.
You can treat ampersands and percent signs as literals by using the
%NRSTR function to mask the character so that the macro processor treats
it as text instead of trying to interpret it as a macro call. See Macro
Language Elements on page 155 and Macro Quoting on page 80 for
information.
26
Chapter 3
Macro Variables
Assign
Values
A macro
invocation
When the %LET statement executes, the macro processor also invokes the
macro WAIT. The macro processor stores the text produced by the macro
WAIT as the value of STATUS.
To prevent the macro from being invoked when the %LET statement
executes, use the %NRSTR function to mask the percent sign:
%let status=%nrstr(%wait);
Macro quoting function %STR or %NRSTR around the value. This action
masks the blanks or special characters so that the macro processor interprets
them as text. See Macro Quoting Functions on page 161. For example,
%let
%let
%let
%let
During the last iteration of the DATA step, the SYMPUT routine creates a
macro variable named NUMBER whose value is the value of N. (SAS also
issues a numeric-to-character conversion message.) The TRIM and the
LEFT functions remove the extra space characters from the DATA step
variable N before its value is assigned to the macro variable NUMBER.
For a discussion of SYMPUT, including information about preventing the
numeric-character message, see CALL SYMPUT Routine on page 224.
27
In the first TITLE statement, the macro processor resolves the reference by replacing
&DSN with the value of macro variable DSN. In the second TITLE statement, the value
for DSN does not replace &DSN. SAS sees the following statements:
TITLE1 "Contents of Data Set Newdata";
TITLE2 'Contents of Data Set &dsn';
You can refer to a macro variable as many times as you need to in a SAS program. The
value remains constant until you change it. For example, this program refers to macro
variable DSN twice:
%let dsn=Newdata;
data temp;
set &dsn;
if age>=20;
run;
proc print;
title "Subset of Data Set &dsn";
run;
Each time the reference &DSN appears, the macro processor replaces it with Newdata.
SAS sees the following statements:
DATA TEMP;
SET NEWDATA;
IF AGE>=20;
RUN;
PROC PRINT;
TITLE "Subset of Data Set NewData";
RUN;
Note: If you reference a macro variable that does not exist, a warning message is printed
in the SAS log. For example, if macro variable JERRY is misspelled as JERY, the
following produces an unexpected result:
%let jerry=student;
data temp;
28
Chapter 3
Macro Variables
x="produced by &jery";
run;
Notice that macro variable references do not require the concatenation operator as the
DATA step does. SAS forms the resulting words automatically.
*/
29
None of the macro variable references have resolved as you intended. The macro
processor issues warning messages, and SAS issues syntax error messages. Why?
Because NAME1 and NAME2 are valid SAS names, the macro processor searches for
those macro variables rather than for NAME, and the references pass into the DATA
statement without resolution.
In a macro variable reference, the word scanner recognizes that a macro variable name
has ended when it encounters a character that is not used in a SAS name. However, you
can use a period ( . ) as a delimiter for a macro variable reference. For example, to cause
the macro processor to recognize the end of the word NAME in this example, use a
period as a delimiter between &NAME and the suffix:
/* correct version */
data &name.1 &name.2;
You can end any macro variable reference with a delimiter, but the delimiter is necessary
only if the characters that follow can be part of a SAS name. For example, both of these
TITLE statements are correct:
title "&name.--a report";
title "&name--a report";
30
Chapter 3
Macro Variables
You can also use a %PUT Statement on page 310 to view available macro variables.
%PUT provides several options that enable you to view individual categories of macro
variables.
The system option SYMBOLGEN displays the resolution of macro variables. For this
example, assume that macro variables PROC and DSET have the values GPLOT and
SASUSER.HOUSES, respectively.
options symbolgen;
title "%upcase(&proc) of %upcase(&dset)";
For more information about debugging macro programs, see Macro Facility Error
Messages and Debugging on page 120.
/* incorrect */
This code produces a warning message saying that there is no macro variable CITY
because the macro facility has tried to resolve &CITY and then &N and concatenate
those values.
When you use an indirect macro variable reference, you must force the macro processor
to scan the macro variable reference more than once and resolve the desired reference on
the second, or later, scan. To force the macro processor to rescan a macro variable
reference, you use more than one ampersand in the macro variable reference. When the
macro processor encounters multiple ampersands, its basic action is to resolve two
ampersands to one ampersand. For example, for you to append the value of &N to CITY
and then reference the appropriate variable name, do the following:
%put &&city&n;
/* correct */
If &N contains 6, when the macro processor receives this statement, it performs the
following steps:
31
Boston
32
Chapter 3
Macro Variables
The first %LET statement assigns the string 123 maple avenue to macro variable
ADDRESS. The second %LET statement uses the %SCAN function to search the source
(first argument) and retrieve the first word (second argument). Because the macro
processor executes the %SCAN function before it stores the value, the value of
FRSTWORD is the string 123.
For more information about %SCAN, see %SCAN and %QSCAN Functions on page
250. For more information about macro functions, see Macro Language Elements on
page 155.
33
Chapter 4
Macro Processing
Macro Processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
Defining and Calling Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
How the Macro Processor Compiles a Macro Definition . . . . . . . . . . . . . . . . . . . . . 34
How the Macro Processor Executes a Compiled Macro . . . . . . . . . . . . . . . . . . . . . . 36
Summary of Macro Processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
Macro Processing
This section describes macro processing and shows the typical pattern that SAS follows
to process a program containing macro elements. For most macro programming, you do
not need this level of detail. It is provided to help you understand what is going on
behind the scenes.
Macros can contain programming statements that enable you to control how and
when text is generated.
Macros can accept parameters. You can write generic macros that can serve a
number of uses.
To compile a macro, you must submit a macro definition. The following is the general
form of a macro definition:
%MACRO macro_name;
<macro_text>
%MEND <macro_name>;
macro_name is a unique SAS name that identifies the macro and macro_text is any
combination of macro statements, macro calls, text expressions, or constant text.
When you submit a macro definition, the macro processor compiles the definition and
produces a member in the session catalog. The member consists of compiled macro
34
Chapter 4
Macro Processing
program statements and text. The distinction between compiled items and noncompiled
(text) items is important for macro execution. Examples of text items include:
model text for SAS statements and SAS windowing environment commands
When you want to call the macro, you use the form
%macro_name.
Input Stack
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
%app(10000)
proc print;
run;
Using the same process described in SAS Programs and Macro Processing on page 11
the word scanner begins tokenizing the program. When the word scanner detects %
followed by a nonblank character in the first token, it triggers the macro processor. The
macro processor examines the token and recognizes the beginning of a macro definition.
The macro processor pulls tokens from the input stack and compiles until the %MEND
statement terminates the macro definition (Figure 4.2 on page 35).
During macro compilation, the macro processor does the following:
compiles and stores all macro program statements for that macro as macro
instructions
35
Compiler
Word Scanner
Symbol Table
SYSDAY
Friday
Macro Catalog
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
Macro Processor
Input Stack
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
%app(10000)
proc print;
run;
In this example, the macro definition is compiled and stored successfully. (See the
following figure.) For the sake of illustration, the compiled APP macro looks like the
original macro definition that was in the input stack. The entry would actually contain
compiled macro instructions with constant text. The constant text in this example is
underlined.
36
Chapter 4
Figure 4.3
Macro Processing
Compiler
Word Scanner
Symbol Table
SYSDAY
Friday
Macro Catalog
APP Macro
%macro app(goal);
%if&sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Macro Processor
Input Stack
%app(10000)
proc print;
run;
To continue the example from the previous section, the following figure shows the lines
remaining in the input stack after the macro processor compiles the macro definition
APP.
Figure 4.4 The Macro Call in the Input Stack
Input Stack
%app(10000)
proc print;
run;
The word scanner examines the input stack and detects % followed by a nonblank
character in the first token. It triggers the macro processor to examine the token.
37
Compiler
Word Scanner
Symbol Table
SYSDAY
Friday
Macro Catalog
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Macro Processor
Input Stack
app (10000)
proc print;
run;
The macro processor recognizes a macro call and begins to execute macro APP, as
follows:
1. The macro processor creates a local symbol table for the macro. The macro
processor examines the previously compiled definition of the macro. If there are any
parameters, variable declarations, or computed GOTO statements in the macro
definition, the macro processor adds entries for the parameters and variables to the
newly created local symbol table.
2. The macro processor further examines the previously compiled macro definition for
parameters to the macro. If no parameters were defined in the macro definition, the
macro processor begins to execute the compiled instructions of the macro. If any
parameters were contained in the definition, the macro processor removes tokens
from the input stack to obtain values for positional parameters and non-default
values for keyword parameters. The values for parameters found in the input stack
are placed in the appropriate entry in the local symbol table.
Note: Before executing any compiled instructions, the macro processor removes
only enough tokens from the input stack to ensure that any tokens that are
supplied by the user and pertain to the macro call have been removed.
3. The macro processor encounters the compiled %IF instruction and recognizes that
the next item will be text containing a condition.
4. The macro processor places the text &sysday=Friday on the input stack ahead of
the remaining text in the program. (See the following figure). The macro processor
waits for the word scanner to tokenize the generated text.
38
Chapter 4
Figure 4.6
Macro Processing
Compiler
Word Scanner
Symbol Table
SYSDAY
Friday
10000
Macro Catalog
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Macro Processor
Input Stack
&sysday=Friday
proc print;
run;
1. The word scanner starts tokenizing the generated text, recognizes an ampersand
followed by nonblank character in the first token, and triggers the macro processor.
2. The macro processor examines the token and finds a possible macro variable
reference, &SYSDAY. The macro processor first searches the local APP symbol
table for a matching entry and then the global symbol table. When the macro
processor finds the entry in the global symbol table, it replaces macro variable in the
input stack with the value Friday. (See the following figure.)
3. The macro processor stops and waits for the word scanner to tokenize the generated
text.
Figure 4.7
Compiler
Word Scanner
Symbol Table
SYSDAY
Friday
10000
Macro Catalog
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Macro Processor
Input Stack
Friday=Friday
proc print;
run;
39
1. The word scanner then read Friday=Friday from the input stack.
2. The macro processor evaluates the expression Friday=Friday and, because the
expression is true, proceeds to the %THEN and %DO instructions.
Figure 4.8
Compiler
Word Scanner
Friday
=
Friday
Symbol Table
SYSDAY
Friday
10000
Macro Catalog
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Macro Processor
Input Stack
proc print;
run;
1. The macro processor executes the compiled %DO instructions and recognizes that
the next item is text.
2. The macro processor places the text on top of the input stack and waits for the word
scanner to begin tokenization.
3. The word scanner reads the generated text from the input stack, and tokenizes it.
4. The word scanner recognizes the beginning of a DATA step, and triggers the
compiler to begin accepting tokens. The word scanner transfers tokens to the
compiler from the top of the stack.
40
Chapter 4
Figure 4.9
Macro Processing
Compiler
DATA
Macro Catalog
Symbol Table
Word Scanner
SYSDAY
thisweek
;
set
lastweek
;
Friday
10000
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Macro Processor
Input Stack
if totsales > &goal
then bonus = .03;
else bonus = 0;
proc print;
run;
1. When the word scanner detects & followed by a nonblank character (the macro
variable reference &GOAL), it triggers the macro processor.
2. The macro processor looks in the local APP symbol table and resolves the macro
variable reference &GOAL to 10000. The macro processor places the value on top
of the input stack, ahead of the remaining text in the program.
Figure 4.10
Compiler
DATA THISWEEK;
SET LASTWEEK;
Symbol Table
Word Scanner
if
totsales
>
SYSDAY
Friday
10000
Macro Catalog
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Macro Processor
Input Stack
10000;
then bonus = .03;
else bonus = 0;
proc print;
run;
1. The word scanner resumes tokenization. When it has completed tokenizing the
generated text, it triggers the macro processor.
41
Figure 4.11
Compiler
DATA THISWEEK ;
SET LASTWEEK;
IF TOTSALES > 10000
THEN BONUS = .03 ;
ELSE BONUS = 0 ;
Word Scanner
Symbol Table
SYSDAY
proc
Friday
Macro Catalog
10000
Macro Processor
APP Macro
%macro app(goal);
%if &sysday=Friday %then
%do;
data thisweek;
set lastweek;
if totsales > &goal
then bonus = .03;
else bonus = 0;
%end;
%mend app;
Input Stack
print;
run;
42
Chapter 4
Macro Processing
When the macro processor stops, the word scanner resumes tokenization. This process
continues until the entire program has been processed.
43
Chapter 5
44
Chapter 5
Macro variables are stored in symbol tables, which list the macro variable name and its
value. There is a global symbol table, which stores all global macro variables. Local
macro variables are stored in a local symbol table that is created at the beginning of the
execution of a macro.
You can use the %SYMEXIST function to indicate whether a macro variable exists. See
%SYMEXIST Function on page 260 for more detailed information.
45
GLOBAL
05FEB97
Wednesday
SYSDATE
SYSDAY
COUNTY
Clark
all automatic macro variables except SYSPBUFF. See Automatic Macro Variables
on page 164 for more information about SYSPBUFF and other automatic macro
variables.
most macro variables created by the CALL SYMPUT routine. See Special Cases of
Scope with the CALL SYMPUT Routine on page 63 for more information about
the CALL SYMPUT routine.
You can create global macro variables any time during a SAS session or job. Except for
some automatic macro variables, you can change the values of global macro variables
any time during a SAS session or job.
In most cases, once you define a global macro variable, its value is available to you
anywhere in the SAS session or job and can be changed anywhere. So, a macro variable
referenced inside a macro definition is global if a global macro variable already exists by
the same name (assuming that the variable is not specifically defined as local with the
%LOCAL statement or in a parameter list). The new macro variable definition simply
updates the existing global one. The following are exceptions that prevent you from
referencing the value of a global macro variable:
when a macro variable exists both in the global symbol table and in the local symbol
table, you cannot reference the global value from within the macro that contains the
local macro variable. In this case, the macro processor finds the local value first and
uses it instead of the global value.
if you create a macro variable in the DATA step with the SYMPUT routine, you
cannot reference the value with an ampersand until the program reaches a step
46
Chapter 5
boundary. See Macro Processing on page 33 for more information about macro
processing and step boundaries.
You can use the %SYMGLOBL function to indicate whether an existing macro variable
resides in the global symbol table. See the %SYMGLOBL Function on page 261 for
more detailed information.
As you can see from the log, the local macro variables DAY, DATE, and HOLIDAY
resolve inside the macro, but outside the macro that they do not exist and therefore do
not resolve.
47
HOLINFO
DAY
DATE
HOLIDAY
Thursday
12/25
Christmas
A macro's local symbol table is empty until the macro creates at least one macro
variable. A local symbol table can be created by any of the following:
a %LOCAL statement
macro statements that define macro variables, such as %LET and the iterative %DO
statement (if the variable does not already exist globally or a %GLOBAL statement
is not used)
Note: Macro parameters are always local to the macro that defines them. You cannot
make macro parameters global. (Although, you can assign the value of the parameter
to a global variable. See Creating Global Variables Based on the Value of Local
Variables on page 62.)
When you invoke one macro inside another, you create nested scopes. Because you can
have any number of levels of nested macros, your programs can contain any number of
levels of nested scopes.
You can use the %SYMLOCAL function to indicate whether an existing macro variable
resides in an enclosing local symbol table. See the %SYMLOCAL Function on page
262 for more detailed information.
48
Chapter 5
The %PUT statement preceding the %MEND statement writes to the SAS log the
scopes, names, and values of all user-generated macro variables:
DOGS
TYPE
work
GLOBAL
ORIGIN
North America
Because TYPE is a macro parameter, TYPE is local to the macro DOGS, with value
work. Because ORIGIN is defined in open code, it is global.
49
50
Chapter 5
Figure 5.3
Request to resolve
variable
YES
Resolve
variable
NO
Issue
warning
message
YES
Resolve
variable
NO
Does variable exist in
next available scope?
YES
Resolve
variable
NO
Continue checking next
available scope
YES
Resolve
variable
NO
Issue
warning
message
51
52
Chapter 5
Because NEW exists as a global variable, the macro processor changes the value of the
variable rather than creating a new one. The macro NAME1's local symbol table remains
empty.
The following figure illustrates the contents of the global and local symbol tables before,
during, and after NAME1's execution.
GLOBAL
15AUG97
Friday
SYSDATE
SYSDAY
inventry
NEW
GLOBAL
15AUG97
Friday
SYSDATE
SYSDAY
report
NEW
NAME1
GLOBAL
15AUG97
Friday
SYSDATE
SYSDAY
NEW
report
53
54
Chapter 5
After NAME2 executes, the SAS compiler sees the following statements:
data report;
set &old;
run;
The macro processor encounters the reference &OLD after macro NAME2 has finished
executing. Thus, the macro variable OLD no longer exists. The macro processor is not
able to resolve the reference and issues a warning message.
The following figure illustrates the contents of the global and local symbol tables at
various stages.
55
GLOBAL
15AUG97
Friday
SYSDATE
SYSDAY
inventry
NEW
GLOBAL
15AUG97
Friday
SYSDATE
SYSDAY
report
NEW
NAME2
GLOBAL
OLD
warehse
15AUG97
Friday
SYSDATE
SYSDAY
NEW
report
But suppose you place the SAS statements inside the macro NAME2, as in the following
program:
56
Chapter 5
In this case, the macro processor generates the SET statement during the execution of
NAME2, and it locates OLD in NAME2's local symbol table. Therefore, executing the
macro produces the following statements:
data report;
set warehse;
run;
The same rule applies regardless of how many levels of nesting exist. Consider the
following example:
%let new=inventry;
%macro conditn;
%let old=sales;
%let cond=cases>0;
%mend conditn;
%macro name3;
%let new=report;
%let old=warehse;
%conditn
data &new;
set &old;
if &cond;
run;
%mend name3;
%name3
CONDITN finishes executing before the macro processor reaches the reference
&COND, so no variable named COND exists when the macro processor attempts to
resolve the reference. Thus, the macro processor issues a warning message and generates
the unresolved reference as part of the constant text and issues a warning message. The
following figure shows the symbol tables at each step.
57
GLOBAL
15AUG97
Friday
SYSDATE
SYSDAY
Early execution of
NAME3, before
CONDITN executes
report
NEW
NAME3
GLOBAL
OLD
warehse
15AUG97
Friday
SYSDATE
SYSDAY
NAME3
CONDITN
GLOBAL
report
OLD
sales
COND = cases>0
15AUG97
Friday
SYSDATE
SYSDAY
Late execution of
NAME3, after
CONDITN executes
NEW
NAME3
NEW
report
OLD
sales
Notice that the placement of a macro invocation is what creates a nested scope, not the
placement of the macro definition. For example, invoking CONDITN from within
58
Chapter 5
NAME3 creates the nested scope. It is not necessary to define CONDITN within
NAME3.
After macro execution, the SAS compiler sees the following statements:
proc print;
var dept1 dept2 dept3 dept4 dept5;
title "Quarterly Report for 6";
run;
The macro processor changes the value of the global variable N each time it executes the
iterative %DO loop. (After the loop stops executing, the value of N is 6, as described in
%DO Statement on page 288.) To prevent conflicts, use a %LOCAL statement to
create a local variable N, as shown here:
%macro namels2(name,number);
%local n;
%do n=1 %to &number;
&name&n
%end;
%mend namels2;
59
The following figure shows the symbol tables before NAMELS2 executes, while
NAMELS2 is executing, and when the macro processor encounters the reference &N in
the TITLE statement.
60
Chapter 5
Figure 5.8
Symbol Tables for Global and Local Variables with the Same Name
GLOBAL
15AUG97
Friday
SYSDATE
SYSDAY
GLOBAL
N
NAMELS2
15AUG97
Friday
SYSDATE
SYSDAY
GLOBAL
NAME
NUMBER
N
dept
5
6
SYSDATE
SYSDAY
15AUG97
Friday
61
Suppose you want to put the SAS DATA step statements outside NAME4. In this case,
all the macro variables must be global for the macro processor to resolve the references.
You cannot add OLD to the %GLOBAL statement in CONDITN because the %LET
statement in NAME4 has already created OLD as a local variable to NAME4 by the time
CONDITN begins to execute. (You cannot use the %GLOBAL statement to make an
existing local variable global.)
Thus, to make OLD global, use the %GLOBAL statement before the variable reference
appears anywhere else, as shown here in the macro NAME5:
%let new=inventry;
%macro conditn;
%global cond;
%let old=sales;
%let cond=cases>0;
%mend conditn;
%macro name5;
%global old;
%let new=report;
%let old=warehse;
62
Chapter 5
Now the %LET statement in NAME5 changes the value of the existing global variable
OLD rather than creating OLD as a local variable. The SAS compiler sees the following
statements:
data report;
set sales;
if cases>0;
run;
63
Beginning with SAS Version 8, if CALL SYMPUT is used after a PROC SQL,
the variable will be created in a local symbol table.
If the executing macro contains a computed %GOTO statement, the variable will
be created in the local symbol table. A computed %GOTO statement is one that
uses a label that contains an & or a % in it. That is, a computed %GOTO
statement contains a macro variable reference or a macro call that produces a text
expression. Here is an example of a computed %GOTO statement:
%goto &home;
The symbol table that is currently available to a DATA step is the one that exists when
SAS determines that the step is complete. (SAS considers a DATA step to be complete
when it encounters a RUN statement, a semicolon after data lines, or the beginning of
another step.)
In simplest terms, if an executing macro contains a computed %GOTO statement, or if
the macro variable SYSPBUFF is created at macro invocation time, but the local symbol
table is empty, CALL SYMPUT behaves as if the local symbol table was not empty, and
creates a local macro variable.
You might find it helpful to use the %PUT statement with the _USER_ option to
determine what symbol table the CALL SYMPUT routine has created the variable in.
64
Chapter 5
This message appears because the DATA step is complete within the environment of
ENV1 (that is, the RUN statement is within the macro) and because the local symbol
table of ENV1 is not empty (it contains parameter PARAM1). Therefore, the CALL
SYMPUT routine creates MYVAR1 as a local variable for ENV1, and the value is not
available to the subsequent DATA step, which expects a global macro variable.
To see the scopes, add a %PUT statement with the _USER_ option to the macro, and a
similar statement in open code. Now invoke the macro as before:
%macro env1(param1);
data _null_;
x = 'a token';
call symput('myvar1',x);
run;
%put ** Inside the macro: **;
%put _user_;
%mend env1;
%env1(10)
%put ** In open code: **;
%put _user_;
data temp;
y = "&myvar1";
run;
When the %PUT _USER_ statements execute, they write the following information to
the SAS log:
** Inside the macro: **
ENV1
MYVAR1
a token
ENV1
PARAM1
10
** In open code: **
The MYVAR1 macro variable is created by CALL SYMPUT in the local ENV1 symbol
table. The %PUT _USER_ statement in open code writes nothing to the SAS log,
because no global macro variables are created.
The following figure shows all of the symbol tables in this example.
The Symbol Tables with the CALL SYMPUT Routine Generating a Complete DATA Step
SYSDATE
SYSDAY
GLOBAL
SYSDATE
SYSDAY
15AUG97
Friday
GLOBAL
15AUG97
Friday
ENV1
GLOBAL
PARAM1
MYVAR1
10
a token
15AUG97
Friday
SYSDATE
SYSDAY
65
66
Chapter 5
These statements execute without errors. The DATA step is complete only when SAS
encounters the RUN statement (in this case, in open code). Thus, the current scope of the
DATA step is the global scope. CALL SYMPUT creates MYVAR2 as a global macro
variable, and the value is available to the subsequent DATA step.
Again, use the %PUT statement with the _USER_ option to illustrate the scopes:
%macro env2(param2);
data _null_;
x = 'a token';
call symput('myvar2',x);
%put ** Inside the macro: **;
%put _user_;
%mend env2;
%env2(20)
run;
%put ** In open code: **;
%put _user_;
data temp;
y="&myvar2";
run;
When the %PUT _USER_ statement within ENV2 executes, it writes the following to
the SAS log:
** Inside the macro: **
ENV2
PARAM2
20
The %PUT _USER_ statement in open code writes the following to the SAS log:
** In open code: **
GLOBAL
MYVAR2
a token
The Symbol Tables with the CALL SYMPUT Routine Generating an Incomplete DATA Step
SYSDATE
SYSDAY
GLOBAL
SYSDATE
SYSDAY
15AUG97
Friday
GLOBAL
15AUG97
Friday
ENV2
GLOBAL
PARAM2
20
15AUG97
Friday
SYSDATE
SYSDAY
MYVAR2
a token
67
68
Chapter 5
In this case, the DATA step is complete and executes within the macro, but the local
symbol table is empty. So, CALL SYMPUT creates MYVAR3 in the closest available
nonempty symbol tablethe global symbol table. Both %PUT statements show that
MYVAR3 exists in the global symbol table:
** Inside the macro: **
GLOBAL
MYVAR3
a token
** In open code: **
GLOBAL
MYVAR3
a token
69
The presence of the /PARMBUFF specification causes the SYSPBUFF automatic macro
variable to be created. So, when you call macro ENV4, CALL SYMPUT creates the
macro variable MYVAR4 in the local symbol table (that is, in ENV4's), even though the
macro ENV4 has no parameters and no local variables.
The results of the %PUT statements prove thisthe score of MYVAR4 is listed as
ENV4, and the reference to SYSPBUFF does not resolve in the open code %PUT
statement because SYSPBUFF is local to ENV4:
** Inside the macro: **
b ENV4
MYVAR4
a token
** In open code: **
WARNING: Apparent symbolic reference SYSPBUFF not resolved.
For more information, see SYSPBUFF Automatic Macro Variable on page 210.
70
Chapter 5
71
Chapter 6
Macro Expressions
Macro Expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
Defining Arithmetic and Logical Expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
Evaluating Arithmetic and Logical Expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
Operands and Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
How the Macro Processor Evaluates Arithmetic Expressions . . . . . . . . . . . . . . . . . 74
Evaluating Numeric Operands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
Evaluating Floating-Point Operands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
How the Macro Processor Evaluates Logical Expressions . . . . . . . . . . . . . . . . . . . . 76
Comparing Numeric Operands in Logical Expressions . . . . . . . . . . . . . . . . . . . . . . 76
Comparing Floating-Point or Missing Values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
Comparing Character Operands in Logical Expressions . . . . . . . . . . . . . . . . . . . . . 77
Macro Expressions
There are three types of macro expressions: text, logical, and arithmetic. A text
expression is any combination of text, macro variables, macro functions, or macro calls.
Text expressions are resolved to generate text. Here are some examples of text
expressions:
&BEGIN
%GETLINE
&PREFIX.PART&SUFFIX
%UPCASE(&ANSWER)
Logical expressions and arithmetic expressions are sequences of operators and operands
forming sets of instructions that are evaluated to produce a result. An arithmetic
expression contains an arithmetic operator. A logical expression contains a logical
operator. The following table shows examples of simple arithmetic and logical
expressions:
Table 6.1
Arithmetic Expressions
Logical Expressions
1+2
&DAY = FRIDAY
72
Chapter 6
Macro Expressions
Arithmetic Expressions
Logical Expressions
4*3
A<a
4/2
1 < &INDEX
00FFx - 003Ax
&START NE &END
You can use text expressions to generate partial or complete arithmetic or logical
expressions. The macro processor resolves text expressions before it evaluates the
arithmetic or logical expressions. For example, when you submit the following
statements, the macro processor resolves the macro variables &A, &B, and
&OPERATOR in the %EVAL function, before it evaluates the expression 2 + 5:
%let A=2;
%let B=5;
%let operator=+;
73
When you submit these statements, the %PUT statement writes the following to the log:
The result of 2 + 5 is 7.
Precedence
Definition
Example
**
exponentiation
2**4
positive prefix
+(A+B)
negative
prefix
-(A+B)
logical not*
NOT A
multiplication
A*B
division
A/B
addition
A+B
subtraction
A-B
less than
A<B
^~
<
Mnemonic
NOT
LT
74
Chapter 6
Macro Expressions
Operator
Mnemonic
Precedence
Definition
Example
<=
LE
less than or
equal
A<=B
EQ
equal
A=B
IN
equal to one
of a list**
A#B C D E
= ^= ~=
NE
not equal*
A NE B
>
GT
greater than
A>B
>=
GE
greater than or
equal
A>=B
&
AND
logical and
OR
logical or
A=B | C=D
CAUTION:
Integer expressions that contain exponential, multiplication, or division
operators and that use or compute values outside the range
-9,007,199,254,740,992 to 9,007,199,254,740,992 might get inexact results.
c=%eval(4/2);
i=%eval(5/3);
The value of a
The value of b
The value of c
The value of I
is
is
is
is
75
&a;
&b;
&c;
&i;
When you submit these statements, the following messages appear in the log:
The
The
The
The
value
value
value
value
of
of
of
of
a
b
c
I
is
is
is
is
3
30
2
1
Notice the result of the last statement. If you perform division on integers that would
ordinarily result in a fraction, integer arithmetic discards the fractional part.
When the macro processor evaluates an integer arithmetic expression that contains a
character operand, it generates an error. Only operands that contain characters that
represent integers or hexadecimal values are converted to numeric values. The following
statement shows an incorrect usage:
%let d=%eval(10.0+20.0);
/*INCORRECT*/
Because the %EVAL function supports only integer arithmetic, the macro processor
does not convert a value containing a period character to a number, and the operands are
evaluated as character operands. This statement produces the following error message:
ERROR: A character operand was found in the %EVAL function or %IF
condition where a numeric operand is required. The condition was:
10.0+20.0
a=%sysevalf(10.0*3.0);
b=%sysevalf(10.5+20.8);
c=%sysevalf(5/3);
10.0*3.0 = &a;
10.5+20.8 = &b;
5/3 = &c;
76
Chapter 6
Macro Expressions
%put %sysevalf(&a,integer);
%put %sysevalf(&a,ceil);
%put %sysevalf(&a,floor);
These conversion types tailor the value returned by %SYSEVALF so that it can be used
in other macro expressions that require integer or Boolean values.
CAUTION:
Specify a conversion type for the %SYSEVALF function. If you use the
The results show that the operands in the logical expressions were evaluated as numeric
values.
77
%macro compflt(first,second);
%if %sysevalf(&first>&second) %then %put &first is greater than
&second;
%else %if %sysevalf(&first=&second) %then %put &first equals
&second;
%else %put &first is less than &second;
%mend compflt;
The results show that the %SYSEVALF function evaluated the floating-point and
missing values.
When the macro processor evaluates expressions with character operands, it uses the sort
sequence of the host operating system for the comparison. The comparisons in these
examples work with both EBCDIC and ASCII sort sequences.
A special case of a character operand is an operand that looks numeric but contains a
period character. If you use an operand with a period character in an expression, both
operands are compared as character values. This can lead to unexpected results. So that
you can understand and better anticipate results, look at the following examples.
Invoke the COMPNUM macro with these values:
%compnum(10,2.0)
78
Chapter 6
Macro Expressions
Because the %IF-THEN statement in the COMPNUM macro uses integer evaluation, it
does not convert the operands with decimal points to numeric values. The operands are
compared as character strings using the host sort sequence, which is the comparison of
characters with smallest-to-largest values. For example, lowercase letters might have
smaller values than uppercase, and uppercase letters might have smaller values than
digits.
CAUTION:
The host sort sequence determines comparison results. If you use a macro
definition on more than one operating system, comparison results might differ
because the sort sequence of one host operating system might differ from the other
system. See the Chapter 48, SORT Procedure in Base SAS Procedures Guide for
more information about host sort sequences.
79
Chapter 7
Macro Quoting
Macro Quoting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
Masking Special Characters and Mnemonics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
Understanding Why Macro Quoting Is Necessary . . . . . . . . . . . . . . . . . . . . . . . . . . 80
Overview of Macro Quoting Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
Passing Parameters That Contain Special Characters and Mnemonics . . . . . . . . . . 82
Deciding When to Use a Macro Quoting Function and Which Function to Use . . 83
%STR and %NRSTR Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
Using %STR and %NRSTR Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
Using Unmatched Quotation Marks and Parentheses with %STR and %NRSTR . . 86
Using % Signs with %STR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
Examples Using %STR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
Examples Using %NRSTR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
%BQUOTE and %NRBQUOTE Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
Using %BQUOTE and %NRBQUOTE Functions . . . . . . . . . . . . . . . . . . . . . . . . . . 89
Examples Using %BQUOTE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
Referring to Already Quoted Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
Deciding How Much Text to Mask with a Macro Quoting Function . . . . . . . . . . . 91
%SUPERQ Function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
Using %SUPERQ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
Examples Using %SUPERQ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
Using the %SUPERQ Function to Prevent Warning Messages . . . . . . . . . . . . . . . . 92
Using the %SUPERQ Function to Enter Macro Keywords . . . . . . . . . . . . . . . . . . . 93
Summary of Macro Quoting Functions and the Characters that They Mask . . . . 94
Unquoting Text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
Restoring the Significance of Symbols . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
Example of Unquoting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
What to Do When Automatic Unquoting Does Not Work . . . . . . . . . . . . . . . . . . . . 97
How Macro Quoting Works . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
Other Functions That Perform Macro Quoting . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
Functions That Start with the Letter Q . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
Example Using the %QSCAN Function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
80
Chapter 7
Macro Quoting
Macro Quoting
Masking Special Characters and Mnemonics
The macro language is a character-based language. Even variables that appear to be
numeric are generally treated as character variables (except during expression
evaluation). Therefore, the macro processor enables you to generate all sorts of special
characters as text. But because the macro language includes some of the same special
characters, an ambiguity often arises. The macro processor must know whether to
interpret a particular special character (for example, a semicolon or % sign) or a
mnemonic (for example, GE or AND) as text or as a symbol in the macro language.
Macro quoting functions resolve these ambiguities by masking the significance of
special characters so that the macro processor does not misinterpret them.
The following special characters and mnemonics might require masking when they
appear in text strings:
Table 7.1
blank
LT
GE
AND
GT
OR
IN
NOT
, (comma)
EQ
&
'
<
NE
>
LE
Is the quotation mark in O'Malley an unbalanced single quotation mark or just part of
the name?
Macro Quoting
Is GE the mnemonic for greater than or equal or is it short for General Electric?
81
Macro quoting functions enable you to clearly indicate to the macro processor how it is
to interpret special characters and mnemonics.
Here is an example, using the simplest macro quoting function, %STR. Suppose you
want to assign a PROC PRINT statement and a RUN statement to the macro variable
PRINT. Here is the erroneous statement:
%let print=proc print; run;;
/* undesirable results */
This code is ambiguous. Are the semicolons that follow PRINT and RUN part of the
value of the macro variable PRINT, or does one of them end the %LET statement? If
you do not tell the macro processor what to do, it interprets the semicolon after PRINT
as the end of the %LET statement. So the value of the PRINT macro variable would be
the following:
proc print
The rest of the characters (RUN;;) would be simply the next part of the program.
To avoid the ambiguity and correctly assign the value of PRINT, you must mask the
semicolons with the macro quoting function %STR, as follows:
%let print=%str(proc print; run;);
%SUPERQ
For the paired macro quoting functions, the function beginning with NR affects the same
category of special characters that are masked by the plain macro quoting function as
well as ampersands and percent signs. In effect, the NR functions prevent macro and
macro variable resolution. To help you remember which does which, try associating the
NR in the macro quoting function names with the words not resolved that is,
macros and macro variables are not resolved when you use these functions.
The macro quoting functions with B in their names are useful for macro quoting
unmatched quotation marks and parentheses. To help you remember the B, try
associating B with by itself.
The %SUPERQ macro quoting function is unlike the other macro quoting functions in
that it does not have a mate and works differently. See %SUPERQ Function on page
259 for more information.
The macro quoting functions can also be divided into two types, depending on when
they take effect:
compilation functions
cause the macro processor to interpret special characters as text in a macro program
statement in open code or while compiling (constructing) a macro. The %STR and
82
Chapter 7
Macro Quoting
%NRSTR functions are compilation functions. For more information, see %STR
and %NRSTR Functions on page 254.
execution functions
cause the macro processor to treat special characters that result from resolving a
macro expression as text (such as a macro variable reference, a macro invocation, or
the argument of an %EVAL function). They are called execution functions because
resolution occurs during macro execution or during execution of a macro program
statement in open code. The macro processor resolves the expression as far as
possible, issues any warning messages for macro variable references or macro
invocations that it cannot resolve, and quotes the result. The %BQUOTE and
%NRBQUOTE functions are execution functions. For more information, see
%BQUOTE and %NRBQUOTE Functions on page 242.
The %SUPERQ function takes as its argument a macro variable name (or a macro
expression that yields a macro variable name). The argument must not be a reference to
the macro variable whose value you are masking. That is, do not include the & before
the name.
Note: Two other execution macro quoting functions exist: %QUOTE and
%NRQUOTE. They are useful for unique macro quoting needs and for compatibility
with older macro applications. For more information, see %QUOTE and
%NRQUOTE Functions on page 248.
However, placing the macro quoting function in the macro definition makes the macro
much easier for you to invoke.
Deciding When to Use a Macro Quoting Function and Which Function to Use
83
Special
Character
Must Be Masked
+-*/<>=^| ~ #
LE LT EQ NE
GE GT AND OR
NOT IN
Yes
blank
Yes
Yes
, (comma)
Yes
Remarks
84
Chapter 7
Macro Quoting
Special
Character
Must Be Masked
Quoted by All
Macro Quoting
Functions?
'"()
If it might be unmatched
No
Arguments that
might contain
quotation marks and
parentheses should
be masked with a
macro quoting
function so that the
macro facility
interprets the single
and double quotation
marks and
parentheses as text
rather than macro
language symbols or
possibly unmatched
quotation marks or
parentheses for the
SAS language. With
%STR, %NRSTR,
%QUOTE, and
%NRQUOTE,
unmatched quotation
marks and
parentheses must be
marked with a %
sign. You do not
have to mark
unmatched symbols
in the arguments of
%BQUOTE,
%NRBQUOTE, and
%SUPERQ.
%name &name
No
%NRSTR,
%NRBQUOTE, and
%NRQUOTE mask
these patterns. To
use %SUPERQ with
a macro variable,
omit the ampersand
from name.
Remarks
The macro facility allows you as much flexibility as possible in designing your macros.
You need to mask a special character with a macro quoting function only when the
macro processor would otherwise interpret the special character as part of the macro
language rather than as text. For example, in this statement you must use a macro
quoting function to mask the first two semicolons to make them part of the text:
%let p=%str(proc print; run;);
However, in the macro PR, shown here, you do not need to use a macro quoting function
to mask the semicolons after PRINT and RUN:
%macro pr(start);
%if &start=yes %then
%do;
85
Because the macro processor does not expect a semicolon within the %DO group, the
semicolons after PRINT and RUN are not ambiguous, and they are interpreted as text.
Although it is not possible to give a series of rules that cover every situation, the
following sections describe how to use each macro quoting function. Table 7.6 on page
94 provides a summary of the various characters that might need masking and of which
macro quoting function is useful in each situation.
Note: You can also perform the inverse of a macro quoting function that is, remove
the tokenization provided by macro quoting functions. For an example of when the
%UNQUOTE function is useful, see Unquoting Text on page 95.
blank
NE
LE
LT
AND
GE
OR
GT
, (comma)
NOT
'
<
IN
>
EQ
In addition to these special characters and mnemonics, %NRSTR masks & and %.
Note: If an unmatched single or double quotation mark or an open or close parenthesis
is used with %STR or %NRSTR, these characters must be preceded by a percent
sign (%).
86
Chapter 7
Macro Quoting
When you use %STR or %NRSTR, the macro processor does not receive these functions
and their arguments when it executes a macro. It receives only the results of these
functions because these functions work when a macro compiles. By the time the macro
executes, the string is already masked by a macro quoting function. Therefore, %STR
and %NRSTR are useful for masking strings that are constants, such as sections of SAS
code. In particular, %NRSTR is a good choice for masking strings that contain % and &
signs. However, these functions are not so useful for masking strings that contain
references to macro variables because it is possible that the macro variable could resolve
to a value not quotable by %STR or %NRSTR. For example, the string could contain an
unmarked, unmatched open parenthesis.
Notation
Description
Example
%'
unmatched single
quotation mark
%let myvar=
%str(a%');
a'
%"
unmatched double
quotation mark
%let myvar=
%str(title
%first);
title first
%(
unmatched open
parenthesis
%let myvar=
%str (log
%(12);
log(12
%)
unmatched close
parenthesis
%let myvar=
%str (345%));
345)
87
Notation
Description
Example
'%'
%let myvar=
%str('%');
'%'
%%%'
%let myvar=
%str(%%%');
%'
""%%
%let myvar=
%str(""%%);
""%
%%%%
%let myvar=
%str(%%%%);
%%
As a more complex example, the macro KEEPIT1 shows how the %STR function works
in a macro definition:
%macro keepit1(size);
%if &size=big %then %put %str(keep city _numeric_;);
%else %put %str(keep city;);
%mend keepit1;
When you use the %STR function in the %IF-%THEN statement, the macro processor
interprets the first semicolon after the word %THEN as text. The second semicolon ends
the %THEN statement, and the %ELSE statement immediately follows the %THEN
statement. Thus, the macro processor compiles the statements as you intended. However,
if you omit the %STR function, the macro processor interprets the first semicolon after
the word %THEN as the end of the %THEN clause. The next semicolon as constant text.
Because only a %THEN clause can precede a %ELSE clause, the semicolon as constant
text causes the macro processor to issue an error message and not compile the macro.
In the %ELSE statement, the %STR function causes the macro processor to treat the first
semicolon in the statement as text and the second one as the end of the %ELSE clause.
Therefore, the semicolon that ends the KEEP statement is part of the conditional
execution. If you omit the %STR function, the first semicolon ends the %ELSE clause
and the second semicolon is outside the conditional execution. It is generated as text
each time the macro executes. (In this example, the placement of the semicolon does not
affect the SAS code.) Again, using %STR causes the macro KEEPIT1 to compile as you
intended.
88
Chapter 7
Macro Quoting
Here is an example that uses %STR to mask a string that contains an unmatched single
quotation mark. Note the use of the % sign before the quotation mark:
%let innocent=%str(I didn%'t do it!);
If you did not use the %NRSTR function or if you used %STR, the following undesired
output would appear in the SAS log:
The string abc appears in log output,
instead of the variable value.
The %NRSTR function prevents the & from triggering macro variable resolution.
The %NRSTR function is also useful when the macro definition contains patterns that
the macro processor would ordinarily recognize as macro variable references, as in the
following program:
%macro credits(d=%nrstr(Mary&Stacy&Joan Ltd.));
footnote "Designed by &d";
%mend credits;
Using %NRSTR causes the macro processor to treat &STACY and &JOAN simply as
part of the text in the value of D; the macro processor does not issue warning messages
for unresolvable macro variable references. Suppose you invoke the macro CREDITS
with the default value of D, as follows:
%credits()
If you omit the %NRSTR function, the macro processor attempts to resolve the
references &STACY and &JOAN as part of the resolution of &D in the FOOTNOTE
statement. The macro processor issues these warning messages (assuming the SERROR
system option, described in , on page 329 is active) because no such macro variables
exist:
WARNING: Apparent symbolic reference STACY not resolved.
WARNING: Apparent symbolic reference JOAN not resolved.
89
Here is a final example of using %NRSTR. Suppose you wanted to have a text string
include the name of a macro function: This is the result of %NRSTR. Here is
the program:
%put This is the result of %nrstr(%nrstr);
You must use %NRSTR to mask the % sign at compilation, so the macro processor does
not try to invoke %NRSTR a second time. If you did not use %NRSTR to mask the
string %nrstr, the macro processor would complain about a missing open parenthesis
for the function.
90
Chapter 7
Macro Quoting
Note: This example works if you use %STR, but it is not robust or good programming
practice. Because you cannot guarantee what &STATE is going to resolve to, you
need to use %BQUOTE to mask the resolution of the macro variable at execution
time, not the name of the variable itself at compile time.
In the following example, a DATA step creates a character value containing a single
quotation mark and assigns that value to a macro variable. The macro READIT then uses
the %BQUOTE function to enable a %IF condition to accept the unmatched single
quotation mark:
data test;
store="Susan's Office Supplies";
call symput('s',store);
run;
%macro readit;
%if %bquote(&s) ne %then %put *** valid ***;
%else %put *** null value ***;
%mend readit;
%readit
When you assign the value Susan's Office Suppliesto STORE in the DATA
step, enclosing the character string in double quotation marks enables you to use an
unmatched single quotation mark in the string. SAS stores the value of STORE:
Susan's Office Supplies
The CALL SYMPUT routine assigns that value (containing an unmatched single
quotation mark) as the value of the macro variable S. If you do not use the %BQUOTE
function when you reference S in the macro READIT, the macro processor issues an
error message for an invalid operand in the %IF condition.
When you submit the code, the following is written to the SAS log:
*** valid ***
% sign to mark */
Here is the output from the %PUT statement that is written to the SAS log:
*** This coat is John's ***
%SUPERQ Function
91
The results of the three %LET statements are the same because when you mask text with
a macro quoting function, the macro processor quotes only the items that the function
recognizes. Other text enclosed in the function remains unchanged. Therefore, the third
%LET statement is the minimalist approach to macro quoting. However, masking large
blocks of text with a macro quoting function is harmless and actually results in code that
is much easier to read (such as the first %LET statement).
%SUPERQ Function
Using %SUPERQ
The %SUPERQ function locates the macro variable named in its argument and quotes
the value of that macro variable without permitting any resolution to occur. It masks all
items that might require macro quoting at macro execution. Because %SUPERQ does
not attempt any resolution of its argument, the macro processor does not issue any
warning messages that a macro variable reference or a macro invocation has not been
resolved. Therefore, even when the %NRBQUOTE function enables the program to
work correctly, you can use the %SUPERQ function to eliminate unwanted warning
messages from the SAS log. %SUPERQ takes as its argument either a macro variable
name without an ampersand or a text expression that yields a macro variable name.
%SUPERQ retrieves the value of a macro variable from the macro symbol table and
quotes it immediately, preventing the macro processor from making any attempt to
resolve anything that might occur in the resolved value. For example, if the macro
variable CORPNAME resolves to Smith&Jones, using %SUPERQ prevents the macro
processor from attempting to further resolve &Jones. This %LET statement
successfully assigns the value Smith&Jones to TESTVAR:
%let testvar=%superq(corpname);
92
Chapter 7
Macro Quoting
%macro a;
%put *** This is a. ***;
%mend a;
%macro test;
%display ask;
%put *** %superq(val) ***;
%mend test;
Suppose you invoke the macro TEST and respond to the prompt as shown:
%test
Enter the following:
%a %x
It does not invoke the macro A, and it does not issue a warning message that %X was
not resolved. The following two examples compare the %SUPERQ function with other
macro quoting functions.
Suppose you invoke the macro FIRMS3 twice and respond with the following
companies:
A&A Autos
Santos&D'Amato
After the macro executes, the following is written to the SAS log:
*** A&A Autos is valid ***
*** Santos&D'Amato is valid ***
%SUPERQ Function
93
The macro ASK1 does not include a warning about unmatched quotation marks and
parentheses. You can invoke the macro ASK1 and enter a problem:
%ask1
Try entering:
Why did my macro not run when I called it? (It had three
parameters, but I wasn't using any of them.)
It ran after I submitted the next statement.
///
Notice that both the first and second lines of the response contain an unmatched,
unmarked quotation mark and parenthesis. %BQUOTE can handle these characters
during execution.
The macro ASK2, shown here, modifies the macro ASK1 by using the %SUPERQ
function. Now the %WINDOW statement accepts macro language keywords and does
not attempt to resolve macro calls and macro variable references:
%window ask
#5 @5 'Describe the problem.'
#7 @5 'Enter /// when you are finished.'
#9 @5 val 100 attr=underline;
94
Chapter 7
Macro Quoting
%macro ask2;
%global myprob;
%local temp;
%do %until(%superq(val) eq %str(///)); /* No ampersand */
%display ask;
%let temp=&temp %superq(val);
%end;
%let myprob=&temp
%mend ask2;
/* No ampersand */
The response contains a macro language keyword, a macro invocation, and unmatched
parentheses.
Group
Items
all
&%
%NRSTR, %NRBQUOTE,
%SUPERQ, %NRQUOTE
unmatched' ()
%BQUOTE, %NRBQUOTE,
%SUPERQ, %STR*, %NRSTR*,
%QUOTE*, %NRQUOTE*
Table 7.7
By Function
Function
Affects Groups
Works At
%STR
A, C*
Macro compilation
Unquoting Text
95
Function
Affects Groups
Works At
%NRSTR
A, B, C*
Macro compilation
%BQUOTE
A, C
Macro execution
%NRBQUOTE
A, B, C
Macro execution
%SUPERQ
A, B, C
%QUOTE
A, C*
%NRQUOTE
A, B, C*
*Unmatched quotation marks and parentheses must be marked with a percent sign (%) when
used with %STR, %NRSTR, %QUOTE, and %NRQUOTE.
Unquoting Text
Restoring the Significance of Symbols
To unquote a value means to restore the significance of symbols in an item that was
previously masked by a macro quoting function.
Usually, after an item has been masked by a macro quoting function, it retains its special
status until one of the following occurs:
You enclose the item with the %UNQUOTE function. (See %UNQUOTE
Function on page 274.)
The item leaves the word scanner and is passed to the DATA step compiler, SAS
procedures, SAS macro facility, or other parts of the SAS System.
As a rule, you do not need to unquote an item because it is automatically unquoted when
the item is passed from the word scanner to the rest of SAS. Under two circumstances,
however, you might need to use the %UNQUOTE function to restore the original
significance to a masked item:
when you want to use a value with its restored meaning later in the same macro in
which its value was previously masked by a macro quoting function
96
Chapter 7
Macro Quoting
when, as in a few cases, masking text with a macro quoting function changes the way
the word scanner tokenizes it, producing SAS statements that look correct but that
the SAS compiler does not recognize
Example of Unquoting
The following example illustrates using a value twice: once in macro quoted form and
once in unquoted form. Suppose the macro ANALYZE is part of a system that enables
you to compare the output of two statistical models interactively. First, you enter an
operator to specify the relationship that you want to test (one result greater than another,
equal to another, and so on). The macro ANALYZE tests the macro quoted value of the
operator to verify that you have entered it correctly, uses the unquoted value to compare
the values indicated, and writes a message. Match the numbers in the comments to the
paragraphs below.
%macro analyze(stat);
data _null_;
set out1;
call symput('v1',&stat);
run;
data _null_;
set out2;
call symput('v2',&stat);
run;
%put Preliminary test. Enter the operator.;
%input;
%let op=%bquote(&sysbuffr);
%if &op=%str(=<) %then %let op=%str(<=);
%else %if &op=%str(=>) %then %let op=%str(>=);
%if &v1 %unquote(&op) &v2 %then
%put You might proceed with the analysis.;
%else
%do;
%put &stat from out1 is not &op &stat from out2.;
%put Please check your previous models.;
%end;
%mend analyze;
You mask the value of SYSBUFFR with the %BQUOTE function, which masks
resolved items including unmatched, unmarked quotation marks and parentheses (but
excluding the ampersand and percent sign).
The %IF condition compares the value of the macro variable OP to a string to see
whether the value of OP contains the correct symbols for the operator. If the value
contains symbols in the wrong order, the %THEN statement corrects the symbols.
Because a value masked by a macro quoting function remains masked, you do not need
to mask the reference &OP in the left side of the %IF condition.
Because you can see the characters in the right side of the %IF condition and in the
%LET statement when you define the macro, you can use the %STR function to mask
them. Masking them once at compilation is more efficient than masking them at each
execution of ANALYZE.
To use the value of the macro variable OP as the operator in the %IF condition, you
must restore the meaning of the operator with the %UNQUOTE function.
97
When the macro processor generates the text from the macro variable, the items masked
by macro quoting functions are automatically unquoted, and the previously masked
semicolons work normally when they are passed to the rest of SAS.
In rare cases, masking text with a macro quoting function changes the way the word
scanner tokenizes the text. (The word scanner and tokenization are discussed in SAS
Programs and Macro Processing on page 11 and Macro Processing on page 33.) For
example, a single or double quotation mark produced by resolution within the
%BQUOTE function becomes a separate token. The word scanner does not use it as the
boundary of a literal token in the input stack. If generated text that was once masked by
the %BQUOTE function looks correct but SAS does not accept it, you might need to use
the %UNQUOTE function to restore normal tokenization.
98
Chapter 7
Macro Quoting
%put *&example*;
When this program is submitted, the following appears in the SAS log:
SYMBOLGEN:
As you can see, the leading and trailing blanks and special characters were retained in
the variable's value. While the macro processor was working with the string, the string
actually contained coded characters that were substituted for the real characters. The
substitute characters included coded characters to represent the start and end of the
string. The leading and trailing blanks were preserved. Characters were also substituted
for the special characters +, =, and ', and the mnemonic AND. When the macro finished
processing and the characters were passed to the rest of SAS, the coding was removed
and the real characters were replaced.
Unquoting Text on page 95 provides more information about what happens when a
masked string is unquoted. For more information, see SYMBOLGEN System Option
on page 358.
The Qxxx functions are necessary because by default, macro functions return an
unquoted result, even if the argument was masked by a macro quoting function. The
%QSCAN, %QSUBSTR, %QUPCASE, and %QSYSFUNC functions mask the returned
value at execution time. The items masked are the same as the items masked by the
%NRBQUOTE function.
99
%local i;
%do i=1 %to 3; 3
%global x&i;
%let x&i=%qscan(%superq(sysbuffr),&i,&s);
4
%end;
%mend splitit;
%splitit
What character separates the values?
#
Enter three values.
Fischer Books#Smith&Sons#Sarah's Sweet Shoppe
5
1. This question asks you to input a delimiter for the %QSCAN function that does not
appear in the values that you enter.
2. Masking the value of SYSBUFFR with the %BQUOTE function enables you to
choose a quotation mark or parenthesis as a delimiter if necessary.
3. The iterative %DO loop creates a global macro variable for each segment of
SYSBUFFR and assigns it the value of that segment.
4. The %SUPERQ function masks the value of SYSBUFFR in the first argument of the
%QSCAN function. It prevents any resolution of the value of SYSBUFFR.
5. The %QSCAN function returns macro quoted segments of the value of SYSBUFFR.
Thus, the unmatched quotation mark in Sarah's Sweet Shoppe and the &name
pattern in Smith&Sons do not cause problems.
100
Chapter 7
Macro Quoting
101
Chapter 8
102
Chapter 8
enables you to use SAS language CALL routines with the macro processor. While
these elements of the macro language are not considered true macro facility
interfaces, they are discussed in this section. See Macro Language Elements on
page 155 for more information about these macro language elements.
invoke a macro based on information available only when the DATA step executes
pass information about a macro variable from the macro facility to the DATA step
The following table lists the DATA step interfaces by category and their uses.
Table 8.1 DATA Step Interfaces to the Macro Facility
Category
Tool
Description
Execution
Resolution
RESOLVE function
Deletion
Information
SYMEXIST function
Read or Write
SYMGET function
Information
SYMGLOBL function
Information
SYMLOCAL function
103
Category
Tool
Description
Read or Write
In the DATA SALES step, the assignment statement for SALEITEM requires the value
of the macro variable SPECIAL at DATA step compilation. CALL EXECUTE does not
produce the value until DATA step execution. Thus, you receive a message about an
unresolved macro variable, and the value assigned to SALEITEM is &special.
In this example, it would be better to eliminate the macro definition (the %LET macro
statement is valid in open code) or move the DATA SALES step into the macro ITEMS.
In either case, CALL EXECUTE is not necessary or useful. Here is one version of this
program that works:
data prices;
/* ID for price category and actual price */
input code amount;
datalines;
104
Chapter 8
/* correct usage */
data sales;
set prices;
length saleitem $ 20;
saleitem="&special";
run;
The %GLOBAL statement is not necessary in this version. Because the %LET statement
is executed in open code, it automatically creates a global macro variable. (See Scopes
of Macro Variables on page 43 for more information about macro variable scopes.)
In this example, the DATA SALES step still requires the value of SPECIAL during
compilation. The CALL EXECUTE routine is useful in this example because of the
conditional IF statement. But as in the first example, CALL EXECUTE still invokes the
macro ITEMS during DATA step execution not during compilation. The macro
Using SAS Language Functions in the DATA Step and Macro Facility
105
ITEMS generates a DATA _NULL_ step that executes after the DATA SALES step has
ceased execution. The DATA _NULL_ step creates SPECIAL, and the value of
SPECIAL is available after the _NULL_ step ceases execution, which is much later than
when the value was needed.
This version of the example corrects the problem:
/* This version solves the problem. */
data prices;
/* ID for price category and actual price */
input code amount;
datalines;
56 300
99 10000
24 225
;
data names;
/* name of sales department and item sold */
input dept $ item $;
cards;
BB Boat
SK Ski
;
%macro items(codevar=);
/* create macro variable if needed */
%global special;
data _null_;
set names;
if &codevar=99 and dept='BB' then
call symput('special', item);
run;
%mend items;
data _null_;
/* call the macro in this step */
set prices;
if amount > 500 then
call execute('%items(codevar=' || code || ')' );
run;
data sales;
/* use the value created by the macro in this step */
set prices;
length saleitem $ 20;
saleitem="&special";
run;
This version uses one DATA _NULL_ step to call the macro ITEMS. After that step
ceases execution, the DATA _NULL_ step generated by ITEMS executes and creates
the macro variable SPECIAL. Then the DATA SALES step references the value of
SPECIAL as usual.
106
Chapter 8
facility. %SYSFUNC and %QSYSFUNC have one difference: the %QSYSFUNC masks
special characters and mnemonics and %SYSFUNC does not. For more information
about these functions, see %SYSFUNC and %QSYSFUNC Functions on page 268.
%SYSFUNC arguments are a single SAS language function and an optional format. See
the following examples:
%sysfunc(date(),worddate.)
%sysfunc(attrn(&dsid,NOBS))
You cannot nest SAS language functions within %SYSFUNC. However, you can nest
%SYSFUNC functions that call SAS language functions, as in the following statement:
%sysfunc(compress(%sysfunc(getoption(sasautos)),%str(%)%(%')))
This example returns the value of the SASAUTOS= system option, using the
COMPRESS function to eliminate opening parentheses, closing parentheses, and single
quotation marks from the result. Note the use of the %STR function and the unmatched
parentheses and quotation marks that are marked with a percent sign (%).
All arguments in SAS language functions within %SYSFUNC must be separated by
commas. You cannot use argument lists preceded by the word OF.
Because %SYSFUNC is a macro function, you do not need to enclose character values
in quotation marks as you do in SAS language functions. For example, the arguments to
the OPEN function are enclosed in quotation marks when the function is used alone but
do not require quotation marks when used within %SYSFUNC.
Here are some examples of the contrast between using a function alone and within
%SYSFUNC:
dsid = open("sasuser.houses","i");
dsid = open("&mydata","&mode");
You can use %SYSFUNC and %QSYSFUNC to call all of the DATA step SAS
functions except the ones that are listed in table Table 17.2 on page 269. In the macro
facility, SAS language functions called by %SYSFUNC can return values with a length
up to 32K. However, within the DATA step, return values are limited to the length of a
data set character variable.
The %SYSCALL macro statement enables you to use SAS language CALL routines
with the macro processor, and it is described in Macro Statements on page 281.
107
INTO Clause
SQL provides the INTO clause in the SELECT statement for creating SAS macro
variables. You can create multiple macro variables with a single INTO clause. The
INTO clause follows the same scoping rules as the %LET statement. See Macro
Variables on page 19 for a summary of how macro variables are created. For further
details and examples relating to the INTO clause, see INTO Clause on page 277.
The following table provides information about macro variables created by SQL that
affect job execution.
Table 8.2
Macro Variable
Description
SQLEXITCODE
Contains the highest return code that occurred from some types of
SQL insert failures. This return code is written to the SYSERR
macro variable when PROC SQL terminates.
SQLOBS
SQLOOPS
SQLRC
SQLXMSG
SQLXRC
108
Chapter 8
Also, through the use of the autocall and compiled stored macro facilities, macros can be
used by more than one SCL program.
Note: Macro modules can be more complicated to maintain than a program segment
because of the symbols and macro quoting that might be required. Also,
implementing modules as macros does not reduce the size of the compiled SCL
code. Program statements generated by a macro are added to the compiled code as if
those lines existed at that location in the program.
The following table lists the SCL macro facility interfaces.
Table 8.3
Category
Tool
Description
Read or Write
SYMGET
SYMGETN
CALL SYMPUT
CALL SYMPUTN
Note: It is inefficient to use SYMGETN to retrieve values that are not assigned with
SYMPUTN. It is also inefficient to use & to reference a macro variable that was
created with CALL SYMPUTN. Instead, use SYMGETN. In addition, it is
inefficient to use SYMGETN and CALL SYMPUTN with values that are not
numeric.
For details about these elements, see DATA Step Call Routines for Macros on page
221 and DATA Step Functions for Macros on page 231.
If you want macro variables to be assigned and retrieved when the SCL program
executes, use CALL SYMPUT and CALL SYMPUTN in the SCL program.
If you want a macro call or macro variable reference to resolve when an SCL
program executes, use SYMGET and SYMGETN in the SCL program.
109
variable reference in the submit block. If the name following the ampersand does not
match any SCL variable, the name passes intact (including the ampersand) with the
submitted statements. When SAS processes the statements, it attempts to resolve the
name as a macro variable reference
To guarantee that a name is passed as a macro variable reference in submitted
statements, precede the name with two ampersands (for example, &&DSNAME). If you
have both a macro variable and an SCL variable with the same name, a reference with a
single ampersand substitutes the SCL variable. To force the macro variable to be
substituted, reference it with two ampersands (&&).
update the macro, you run the risk of the compiled SCL being out of sync with the
source.
110
Chapter 8
*/
MAIN:
/* Run the macro CKAMOUNT to validate */
/* the value of BORROWED.
*/
%ckamount(borrowed)
/* Run the macro CKRATE to validate */
/* the value of INTEREST.
*/
%ckrate(interest)
/* Calculate payment. */
payment=borrowed*interest;
return;
TERM:
return;
SAS/CONNECT Interfaces
Using %SYSRPUT with SAS/CONNECT
The %SYSRPUT macro statement is submitted with SAS/CONNECT to a remote host
to retrieve the value of a macro variable stored on the remote host. %SYSRPUT assigns
that value to a macro variable on the local host. %SYSRPUT is similar to the %LET
macro statement because it assigns a value to a macro variable. However, %SYSRPUT
assigns a value to a variable on the local host, not on the remote host where the
statement is processed. The %SYSRPUT statement places the macro variable in the
current scope of the local host.
Note: The names of the macro variables on the remote and local hosts must not contain
a leading ampersand.
The %SYSRPUT statement is useful for capturing the value of the automatic macro
variable SYSINFO and passing that value to the local host. SYSINFO contains returncode information provided by some SAS procedures. Both the UPLOAD and the
DOWNLOAD procedures of SAS/CONNECT can update the macro variable SYSINFO
and set it to a nonzero value when the procedure terminates due to errors. You can use
%SYSRPUT on the remote host to send the value of the SYSINFO macro variable back
to the local SAS session. Thus, you can submit a job to the remote host and test whether
a PROC UPLOAD or DOWNLOAD step has successfully completed before beginning
another step on either the remote host or the local host.
To use %SYSRPUT, you must have invoked a remote SAS windowing environment
session by submitting the DMR option with the SAS command. For details about using
%SYSRPUT, see the SAS/CONNECT documentation.
To create a new macro variable or to modify the value of an existing macro variable on a
remote host or a server, use the %SYSLPUT macro statement.
SAS/CONNECT Interfaces
111
To determine the success or failure of a step executed on a remote host, use the
%SYSRPUT macro statement to check the value of the automatic macro variable
SYSERR.
For more details and syntax of the %SYSRPUT statement, see %SYSRPUT Statement
on page 319.
112
Chapter 8
113
Chapter 9
114
Chapter 9
If you are developing new programs, consider creating macros and compiling them
during your current session. If you are running production-level jobs using name-style
macros, consider using stored compiled macros. If you are letting a group of users share
macros, consider using the autocall facility.
Note: For greater efficiency, store only name-style macros if you use the stored
compiled macro facility. Storing statement-style and command-style macros is less
efficient.
It is good practice, when you are programming stored compiled macros or autocall
macros, to use the %LOCAL statement to define macro variables that will be used only
inside that macro. Otherwise, values of macro variables defined outside of the current
macro might be altered. See the discussion of macro variable scopes in Scopes of
Macro Variables on page 43.
In general, macro and variable names in the SAS macro facility are case insensitive and
are internally changed to uppercase. The values are case sensitive in the SAS macro
facility and are not changed.
When calling an autocall macro or a stored compiled macro, the macro name is changed
to uppercase and passed to the catalog routines to open a member of that name. The
catalog routines are host dependent and use the default casing for the particular host
when searching for a member. Macro catalog entries should be made using the default
casing for the host in question. Here are the host defaults:
Note: In UNIX, the member name that contains the autocall macro must be all
lowercase letters.
115
Although SAS does not restrict the type of material that you place in an autocall
library, you should store only autocall library files in it to avoid confusion and for
ease of maintenance.
Although SAS lets you include more than one macro definition, as well as open
code, in an autocall library member, you should generally keep only one macro in
any autocall library member. If you need to keep several macros in the same autocall
library member, keep related macros together.
3. Store the source code for each macro in a SOURCE entry in a SAS catalog.
(SOURCE is the entry type.) The name of the SOURCE entry must be the same as
the macro name.
4. Set the SASAUTOS system option to specify the fileref as an autocall library. For
more information, see SASAUTOS= System Option on page 356.
116
Chapter 9
searches for a stored compiled macro definition in the library specified by the
SASMSTORE option, if the MSTORED option is set
searches for a member in the autocall libraries specified by the SASAUTOS option
in the order in which they are specified, if the MAUTOSOURCE option is set
searches the SASHELP library for SAS production stored compiled macro
definitions
When SAS finds a library member in an autocall library with that macro name, the
macro processor does the following:
compiles all of the source statements in that member, including any and all macro
definitions, and stores the result in the session catalog
executes any open code (macro statements or SAS source statements not within any
macro definition) in that member
Note: If an autocall library member contains more than one macro, the macro processor
compiles all of the macros but executes only the macro with the name that you
invoked.
Any open code statements in the same autocall library member as a macro execute only
the first time you invoke the macro. When you invoke the macro later in the same
session, the compiled macro is executed, which contains only the compiled macro
definition and not the other code the autocall macro source file might have contained.
It is not advisable to change SASAUTOS during a SAS session. If you change the
SASAUTOS= specification in an ongoing SAS session, SAS will store the new
specification only until you invoke an uncompiled autocall macro and then will close all
opened libraries and open all the newly specified libraries that it can open.
For information about debugging autocall macros, see Macro Facility Error Messages
and Debugging on page 120.
117
store source
filenames';
'external-file-1';
'external-file-2';
CAUTION:
Save your macro source code. You cannot recreate the source statements from
a compiled macro. Therefore, you must save the original macro source
statements if you want to change the macro. For all stored compiled macros, you
should document your macro source code well. You can save the source code
with the compiled code using the SOURCE option in the %MACRO statement or
you can save the source in a separate file. If you save the source in a separate file,
it is recommended that you save the source code in the same catalog as the
compiled macro. In this example, save it to the following library:
mylib.sasmacro.myfiles.source
Note: To retrieve the source of a compiled stored macro, see %COPY Statement
on page 286.
2. Set the MSTORED system option to enable the stored compiled macro facility. For
more information, see MSTORED System Option on page 354.
3. Assign the SASMSTORE option to specify the SAS library that contains or will
contain the catalog of stored compiled SAS macros. For example, to store or call
118
Chapter 9
119
Chapter 10
120
Chapter 10
Encountering Errors
When the word scanner processes a program and finds a token in the form of & or %, it
triggers the macro processor to examine the name token that follows the & or %.
Depending on the token, the macro processor initiates one of the following activities:
macro compilation
macro execution
An error can occur during any one of these stages. For example, if you misspell a macro
function name or omit a necessary semicolon, that is a syntax error during compilation.
Syntax errors occur when program statements do not conform to the rules of the macro
language. Or, you might refer to a variable out of scope, causing a macro variable
resolution error. Execution errors (also called semantic errors) are usually errors in
program logic. They can occur, for example, when the text generated by the macro has
faulty logic (statements not executed in the right order or in the way you expect).
Of course, even if your macro code is perfect, that does not guarantee that you will not
encounter errors caused by plain SAS code. For example, you might encounter the
following:
Typically, error messages with numbers are plain SAS code error messages. Error
messages generated by the macro processor do not have numbers.
121
The names in the %MACRO and %MEND statements match, and there is a
%MEND for each %MACRO.
%TO values for iterative %DO statements exist and are appropriate.
Comments begin and end correctly and do not contain unmatched single quotation
marks.
Macro variable references begin with &and macro statements begin with %.
Macro variables created by CALL SYMPUT are not referenced in the same DATA
step in which they are created.
Statements that execute immediately (such as %LET) are not part of conditional
DATA step logic.
Single quotation marks are not used around macro variable references (such as in
TITLE or FILENAME statements). When used in quoted strings, macro variable
references resolve only in strings marked with double quotation marks.
Macro variable values do not contain any keywords or characters that could be
interpreted as mathematical operators. (If they do contain such characters, use the
appropriate macro quoting function.)
Macro variables, %GOTO labels, and macro names do not conflict with reserved
SAS and host environment keywords.
122
Chapter 10
Problem
Cause
Explanation
Missing semicolon,
parenthesis, or quotation
mark
Missing %MEND
statement
Unclosed comment
A macro successfully
executes only when it
receives the correct number
of parameters that are of the
correct type.
A %MACRO statement
generates invalid statement
error.
The following table lists some common macro error and warning messages. For each
message, some probable causes are listed, and pointers to more information are
provided.
123
Error Message
Possible Causes
Apparent invocation
of macro xxx not
resolved.
MAUTOSOURCE system
option is turned off.
MAUTOSOURCE is on,
but you have specified an
incorrect pathname in the
SASAUTOS= system
option.
Developing Bug-free
Macros on page 121.
Apparent symbolic
reference xxx not
resolved.
Resolving Timing
Issues on page 128.
Check the spelling of the
macro variable.
Solving Problems with
Macro Variable Scope on
page 124.
Solving Macro Variable
Resolution Problems on
page 123.
Generating a Suffix for a
Macro Variable
Reference in
Introduction to the Macro
Facility on page 3.
124
Chapter 10
The unresolved token is transferred to the input stack for use by other parts of SAS.
Note: You receive the WARNING only if the SERROR system option is on.
To solve these problems, check that you have spelled the macro variable name right and
that you are referencing it in an appropriate scope.
When a macro variable resolves but does not resolve to the correct value, you can check
several things. First, if the variable is a result of a calculation, ensure that the correct
values were passed into the calculation. And, ensure that you have not inadvertently
changed the value of a global variable. (See Solving Problems with Macro Variable
Scope on page 124 for more details about variable scope problems.)
Another common problem is adding text to the end of a macro variable but forgetting to
add a delimiter that shows where the macro variable name ends and the added text
begins. For example, suppose you want to write a TITLE statement with a reference to
WEEK1, WEEK2, and so on. You set a macro variable equal to the first part of the
string and supply the week's number in the TITLE statement:
%let wk=week;
title "This is data for &wk1";
/* INCORRECT */
When these statements compile, the macro processor looks for a macro variable named
WK1, not WK. To fix the problem, add a period (the macro delimiter) between the end
of the macro variable name and the added text, as in the following statements:
%let wk=week;
title "This is data for &wk.1";
CAUTION:
Do not use AF, DMS, or SYS as prefixes with macro variable names. The letters
AF, DMS, and SYS are frequently used by SAS as prefixes for macro variables
created by SAS. SAS does not prevent you from using AF, DMS, or SYS as a prefix
for macro variable names. However, using these strings as prefixes might create a
conflict between the names that you specify and the name of a SAS created macro
variable (including automatic macro variables in later SAS releases). If a name
conflict occurs, SAS might not issue a warning or error message, depending on the
details of the conflict. Therefore, the best practice is to avoid using the strings AF,
DMS, or SYS as the beginning characters of macro names and macro variable
names.
125
/* ERROR */
When you submit these statements, the %PUT statement in the macro TOTINV writes
the value of TOTAL to the log. The %PUT statement that follows the macro call
generates a warning message and writes the text TOTAL=&macvar to the log, as
follows:
TOTAL= $1,240,800.00
WARNING: Apparent symbolic reference MACVAR not resolved.
**** TOTAL=&macvar ****
The second %PUT statement fails because the macro variable MACVAR is local to the
TOTINV macro. To correct the error, you must use a %GLOBAL statement to declare
the macro variable MACVAR.
Another common mistake that occurs with macro variables concerns overlapping macro
variable names. If, within a macro definition, you refer to a macro variable with the
same name as a global macro variable, you affect the global variable, which might not be
what you intended. Either give your macro variables distinct names or use a %LOCAL
statement to specifically define the variables in a local scope. See Forcing a Macro
Variable to Be Local on page 58 for an example of this technique.
When the macro processor encounters the %PUT statement within the %LET statement,
it generates this error message:
ERROR: Open code statement recursion detected.
Open code recursion errors usually occur because the macro processor is not reading
your macro statements as you intended. Careful proofreading can usually solve open
code recursion errors, because this type of error is mostly the result of typos in your
code, not errors in execution logic.
To recover from an open code recursion error, first try submitting a single semicolon. If
that does not work, try submitting the following string:
*'; *"; *); */; %mend; run;
Continue submitting this string until the following message appears in the SAS log:
ERROR: No matching %MACRO statement for this %MEND statement.
If the above method does not work, close your SAS session and restart SAS. Of course,
closing and restarting SAS causes you to lose any unsaved data. Be sure to save often
while you are developing your macros, and proofread them carefully before you submit
them.
126
Chapter 10
If you encounter an error related to a macro function, you might also see other error
messages. The messages are generated by the invalid tokens left on the input stack by
the macro processor.
Consider the following example. The user wants to use the %SUBSTR function to
assign a portion of the value of the macro variable LINCOLN to the macro variable
SECONDWD. But a typo exists in the second %LET statement, where %SUBSTR is
misspelled as %SUBSRT:
%macro test;
%let lincoln=Four score and seven;
%let secondwd=%subsrt(&lincoln,6,5);
%put *** &secondwd ***;
%mend test;
/* ERROR */
%test
When the erroneous program is submitted, the following appears in the SAS log:
WARNING: Apparent invocation of macro SUBSRT not resolved.
The error messages clearly point to the function name, which is misspelled.
A dummy macro is a macro that the macro processor partially compiles but does not
store.
Note: You receive this warning only if the MERROR system option is on.
127
macro processor does not stop compiling tokens. Every line of code that you submit
becomes part of the macro.
Resubmitting the macro definition and adding the %MEND statement does not correct
the error. When you submit the corrected definition, the macro processor treats it as a
nested definition in the original macro definition. The macro processor must find a
matching %MEND statement to stop compilation.
Note: It is a good practice to use the %MEND statement with the macro name, so you
can easily match %MACRO and %MEND statements.
If you recognize that SAS is not processing submitted statements and you are not sure
how to recover, submit %MEND statements one at a time until the following message
appears in the SAS log:
ERROR: No matching %MACRO statement for this %MEND statement.
Then recall the original erroneous macro definition, correct the error in the %MEND
statement, and submit the definition for compilation.
There are other syntax errors that can create similar problems, such as unmatched
quotation marks and unclosed parentheses. Often, one of these syntax errors leads to
others. Consider the following example:
%macro rooms;
/* other macro statements& */
%put **** %str(John's office) ****;
%mend rooms;
/* ERROR */
%rooms
When you submit these statements, the macro processor begins to compile the macro
definition ROOMS. However, the single quotation mark in the %PUT statement is not
marked by a percent sign. Therefore, during compilation the macro processor interprets
the single quotation mark as the beginning of a literal token. It does not recognize the
closing parenthesis, the semicolon at the end of the statement, or the %MEND statement
at the end of the macro definition.
To recover from this error, you must submit the following:
');
%mend;
If the above methods do not work, try submitting the following string:
*'; *"; *); */; %mend; run;
Continue submitting this string until the following message appears in the SAS log:
ERROR: No matching %MACRO statement for this %MEND statement.
Obviously, it is easier to catch these errors before they occur. You can avoid subtle
syntax errors by carefully checking your macros before submitting them for compilation.
See Developing Bug-free Macros on page 121 for a syntax checklist.
Note: Another cause of unexplained and unexpected macro behavior is using a reserved
word as the name of a macro variable or macro. For example, because SAS reserves
names starting with SYS, you should not create macros and macro variables with
names beginning with SYS. Most host environments have reserved words too. For
example, on PC-based platforms, the word CON is reserved for console input. Check
128
Chapter 10
Reserved Words in the Macro Facility on page 363 for reserved SAS keywords.
Check your SAS companion for host environment reserved words.
the user expects something to happen during compilation that does not actually occur
until execution
Here are two examples to help you understand why the timing of compilation and
execution can be important.
/* ERROR */
However, the results differ from the user's expectations. The %LET statement is
executed immediately, while the DATA step is being compiled--before the data set is
read. Therefore, the %LET statement executes regardless of the results of the IF
condition. Even if the data set contains no observations where AGE is greater than 65,
SR_CIT is always yes.
The solution is to set the macro variable's value by a means that is controlled by the IF
logic and does not execute unless the IF statement is true. In this case, the user should
use CALL SYMPUT, as in the following correct program:
%let sr_cit = no;
data senior;
set census;
if age > 65 then
do;
call symput ("sr_cit","yes");
output;
end;
run;
129
When this program is submitted, the value of SR_CIT is set to yesonly if an observation
is found with AGE greater than 65. Note that the variable was initialized to no. It is
generally a good idea to initialize your macro variables.
If AGE was 67, you would expect to see a log message like the following:
This data set contains data about a person
who is 67 years old.
However, no matter what AGE is, the following message is sent to the log:
This data set contains data about a person
who is 0 years old.
When the DATA step is being compiled, &SR_AGE is sent to the macro facility for
resolution, and the result is passed back before the DATA step executes. To achieve the
desired result, submit this corrected program instead:
%let sr_age = 0;
data senior;
set census;
if age > 65 then
do;
call symput("sr_age",age);
stop;
end;
run;
data _null_;
put "This data set contains data about a person";
put "who is &sr_age years old.";
run;
Note: Use double quotation marks in statements like PUT, because macro variables do
not resolve when enclosed in single quotation marks.
Here is another example of erroneously referring to a macro variable in the same step
that creates it:
data _null_;
retain total 0;
set mydata end=final;
total=total+price;
130
Chapter 10
When these statements are submitted, the following lines are written to the SAS log:
WARNING: Apparent symbolic reference MACVAR not resolved.
*** total=&macvar ***
As this DATA step is tokenized and compiled, the &causes the word scanner to trigger
the macro processor, which looks for a MACVAR entry in a symbol table. Because such
an entry does not exist, the macro processor generates the warning message. Because the
tokens remain on the input stack, they are transferred to the DATA step compiler.
During DATA step execution, the CALL SYMPUT statement creates the macro variable
MACVAR and assigns a value to it. However, the text &macvarin the PUT statement
occurs because the text has already been processed while the macro was being compiled.
If you were to resubmit these statements and the macro would appear to work correctly,
but the value of MACVAR would reflect the value set during the previous execution of
the DATA step. This value can be misleading.
Remember that in general, the % and &trigger immediate execution or resolution during
the compilation stage of the rest of your SAS code.
For more examples and explanation of how CALL SYMPUT creates macro variables,
see Special Cases of Scope with the CALL SYMPUT Routine on page 63.
If the error is the autocall library specification and the MERROR option is set, SAS can
generate any or all of the following warnings:
WARNING: No logical assign for filename
FILENAME.
WARNING: Source level autocall is not found or cannot be opened.
Autocall has been suspended and OPTION NOMAUTOSOURCE has
been set. To use the autocall facility again, set OPTION
MAUTOSOURCE.
WARNING: Apparent invocation of macro
MACRO-NAME not resolved.
If the error is in the autocall macro definition, SAS generates a message like the
following:
NOTE: Line generated by the invoked macro
"MACRO-NAME".
131
132
Chapter 10
You can also use PROC CATALOG to display information about autocall library
macros stored in SOURCE entries in a catalog. You cannot use PROC CATALOG or
the Explorer window to copy, delete, or rename stored compiled macros.
You can use the MCOMPILENOTE system option to issue a note to the log upon the
completion of the compilation of any macro. For more information, see
MCOMPILENOTE System Option on page 335.
In SAS 6.11 and later, you can use PROC SQL to retrieve information about all
compiled macros. For example, submitting these statements produces output similar to
the following output:
133
proc sql;
select * from dictionary.catalogs
where memname in ('SASMACR');
Output 10.1 Output from PROC SQL Program for Viewing Compiled Macros
Library
Member
Member
Object
Object
Date
Object
Name
Name
Type
Name
Type
Object Description
Modified Alias
------------------------------------------------------------------------------------------WORK
SASMACR
CATALOG
FINDAUTO MACRO
05/28/96
SASDATA
SASMACR
CATALOG
CLAUSE
MACRO
05/24/96
SASDATA
SASMACR
CATALOG
CMPRES
MACRO
05/24/96
SASDATA
SASMACR
CATALOG
DATATYP
MACRO
05/24/96
SASDATA
SASMACR
CATALOG
LEFT
MACRO
05/24/96
To display information about compiled macros when you invoke them, use the SAS
system options MLOGIC, MPRINT, and SYMBOLGEN. When you specify the SAS
system option MLOGIC, the libref and date of compilation of a stored compiled macro
are written to the log along with the usual information displayed during macro
execution.
%DO
%IF-%THEN
%SCAN
%DO %UNTIL
%QSCAN
%SYSEVALF
%DO %WHILE
%QSUBSTR
%SUBSTR
In addition, you can use the %EVAL function to specify an expression evaluation.
The most common errors that occur while evaluating expressions are the presence of
character operands where numeric operands are required or ambiguity about whether a
token is a numeric operator or a character value. Macro Expressions on page 71
discusses these and other macro expression errors.
Quite often, an error occurs when a special character or a keyword appears in a character
string. Consider the following program:
%macro conjunct(word= );
%if &word = and or &word = but or &word = or %then
%do %put *** &word is a conjunction. ***;
%else
%do %put *** &word is not a conjunction. ***;
%mend conjunct;
/* ERROR */
134
Chapter 10
In the %IF statement, the values of WORD being tested are ambiguous they could
also be interpreted as the numeric operators AND and OR. Therefore, SAS generates the
following error messages in the log:
ERROR: A character operand was found in the %EVAL function or %IF
condition where a numeric operand is required. The condition
was:word = and or
&word = but or
&word = or
ERROR: The macro will stop executing.
To fix this problem, use the quoting functions %BQUOTE and %STR, as in the
following corrected program:
%macro conjunct(word= );
%if %bquote(&word) = %str(and) or %bquote(&word) = but or
%bquote(&word) = %str(or) %then
%do %put *** &word is a conjunction. ***;
%else
%do %put *** &word is not a conjunction. ***;
%mend conjunct;
In the corrected program, the %BQUOTE function quotes the result of the macro
variable resolution (in case the user passes in a word containing an unmatched quotation
mark or some other odd value). The %STR function quotes the comparison values AND
and OR at compile time, so they are not ambiguous. You do not need to use %STR on
the value BUT, because it is not ambiguous (not part of the SAS or macro languages).
See Macro Quoting on page 80 for more information about using macro quoting
functions.
Debugging Techniques
Using System Options to Track Problems
The SAS system options MLOGIC, MLOGICNEST, MPRINT, MPRINTNEST, and
SYMBOLGEN can help you track the macro code and SAS code generated by your
macro. Messages generated by these options appear in the SAS log, prefixed by the
name of the option responsible for the message.
Note: Whenever you use the macro facility, use the following macro options: MACRO,
MERROR, and SERROR. SOURCE is a system option that is helpful when using
the macro facility. It is also helpful to use the SOURCE2 system option when using
the %INCLUDE.
Although the following sections discuss each system option separately, you can, of
course, combine them. However, each option can produce a significant amount of
output, and too much information can be as confusing as too little. So, use only those
options that you think you might need and turn them off when you complete the
debugging.
Debugging Techniques
135
each macro execution. Use the MLOGIC option when you think a bug lies in the
program logic (as opposed to simple syntax errors).
Note: MLOGIC can produce a lot of output, so use it only when necessary, and turn it
off when debugging is finished.
In the following example, the macro FIRST calls the macro SECOND to evaluate an
expression:
%macro second(param);
%let a = %eval(¶m); &a
%mend second;
%macro first(exp);
%if (%second(&exp) ge 0) %then
%put **** result >= 0 ****;
%else
%put **** result < 0 ****;
%mend first;
options mlogic;
%first(1+2)
Submitting this example with option MLOGIC shows when each macro starts execution,
the values of passed parameters, and the result of the expression evaluation.
MLOGIC(FIRST):
MLOGIC(FIRST):
MLOGIC(SECOND):
MLOGIC(SECOND):
MLOGIC(SECOND):
MLOGIC(SECOND):
MLOGIC(FIRST):
MLOGIC(FIRST):
MLOGIC(FIRST):
Beginning execution.
Parameter EXP has value 1+2
Beginning execution.
Parameter PARAM has value 1+2
%LET (variable name is A)
Ending execution.
%IF condition (%second(&exp) ge 0) is TRUE
%PUT **** result >= 0 ****
Ending execution.
136
Chapter 10
When you submit these statements with option MPRINT, these lines are written to the
SAS log:
MPRINT(FIRST):
DATA _NULL_;
MPRINT(FIRST):
VAR=
MPRINT(SECOND): 3
MPRINT(FIRST): ;
MPRINT(FIRST):
PUT VAR=;
MPRINT(FIRST):
RUN;
VAR=3
The MPRINT option shows you the generated text and identifies the macro that
generated it.
The external file created by the MPRINT system option remains open until the SAS
session terminates. The MPRINT text generated by the macro facility is written to the
log during the SAS session and to the external file when the session ends. The text
consists of program statements generated during macro execution with macro variable
references and macro expressions resolved. Only statements generated by the macro are
stored in the external file. Any program statements outside the macro are not written to
the external file. Each statement begins on a new line with one space separating words.
Debugging Techniques
137
The text is stored in the external file without the MPRINT(macroname: prefix, which is
displayed in the log.
If MPRINT is not assigned as a fileref or if the file cannot be accessed, warnings are
written to the log and MFILE is turned off. To use the feature again, you must specify
MFILE again.
By default, the MPRINT and MFILE options are off.
The following example uses the MPRINT and MFILE options to store generated text in
the external file named TEMPOUT:
options mprint mfile;
filename mprint 'TEMPOUT';
%macro temp;
data one;
%do i=1 %to 3;
x&i=&i;
%end;
run;
%mend temp;
%temp
The macro facility writes the following lines to the SAS log and creates the external file
named TEMPOUT:
MPRINT(TEMP):
DATA ONE;
NOTE: The macro generated output from MPRINT will also be written
to external file '/u/local/abcdef/TEMPOUT' while OPTIONS
MPRINT and MFILE are set.
MPRINT(TEMP):
X1=1;
MPRINT(TEMP):
X2=2;
MPRINT(TEMP):
X3=3;
MPRINT(TEMP):
RUN;
Note: Using MPRINT to write code to an external file is a debugging tool only. It
should not be used to create SAS code files for purposes other than debugging.
138
Chapter 10
b2=cat;
b=1;
c=2;
d=a;
e=b;
**** &&&d&b ****;
**** &&&e&c ****;
&.
D resolves to a
B resolves to 1
A1 resolves to dog
&.
E resolves to b
C resolves to 2
B2 resolves to cat
Reading the log provided by the SYMBOLGEN option is easier than examining the
program statements to trace the indirect resolution. Notice that the SYMBOLGEN
option traces each step of the macro variable resolution by the macro processor. When
the resolution is complete, the %PUT statement writes the value to the SAS log.
When you use SYMBOLGEN to trace the values of macro variables that have been
masked with a macro quoting function, you might see an additional message about the
quoting being stripped for printing. For example, suppose you submit the following
statements, with SYMBOLGEN set to on:
%let nickname = %str(My name%'s O%'Malley, but I%'m called Bruce);
%put *** &nickname ***;
The SAS log contains the following after these statements have executed:
SYMBOLGEN:
Debugging Techniques
Table 10.4
139
Situation
Example
%PUT ****&=variable-name****;
%PUT ***&variable-name***;
%PUT ***variable-name&i =
&&variable-name***;
As you recall, macro variables are stored in symbol tables. There is a global symbol
table, which contains global macro variables, and a local symbol table, which contains
local macro variables. During the debugging process, you might find it helpful on
occasion to print these tables to examine the scope and values of a group of macro
variables. To do so, use the %PUT statement with one of the following options:
_ALL_
describes all currently defined macro variables, regardless of scope. User-generated
global and local variables as well as automatic macro variables are included.
_AUTOMATIC_
describes all automatic macro variables. The scope is listed as AUTOMATIC. All
automatic macro variables are global except SYSPBUFF.
_GLOBAL_
describes all global macro variables that were not created by the macro processor.
The scope is listed as GLOBAL. Automatic macro variables are not listed.
_LOCAL_
describes user-generated local macro variables defined within the currently executing
macro. The scope is listed as the name of the macro in which the macro variable is
defined.
_USER_
describes all user-generated macro variables, regardless of scope. For global macro
variables, the scope is GLOBAL; for local macro variables, the scope is the name of
the macro.
The following example uses the %PUT statement with the argument _USER_ to
examine the global and local variables available to the macro TOTINV. Notice the use
of the user-generated macro variable TRACE to control when the %PUT statement
writes values to the log.
%macro totinv(var);
%global macvar;
data inv;
retain total 0;
set sasuser.houses end=final;
total=total+&var;
if final then call symput("macvar",put(total,dollar14.2));
run;
%if &trace = ON
%then
140
Chapter 10
When you submit these statements, the first %PUT statement in the macro TOTINV
writes the message about tracing being on and then writes the scope and value of all user
generated macro variables to the SAS log.
*** Tracing macro scopes. ***
TOTINV VAR price
GLOBAL TRACE ON
GLOBAL MACVAR $1,240,800.00
*** TOTAL= $1,240,800.00 ***
See Scopes of Macro Variables on page 43 for a more detailed discussion of macro
variable scopes.
141
Chapter 11
142
Chapter 11
143
However, using %INCLUDE requires you to know exactly where the physical file is
stored and specify this name in the program itself. Because with the autocall facility all
you have to remember is the name of the macro (not a pathname), the gain in human
efficiency might more than offset the time gained by not compiling the macro. Also,
macros provide additional programming features, such as parameters, conditional
sections, and loops, as well as the ability to view macro variable resolution in the SAS
log.
So, be sure to use a macro only when necessary. And, balance the various efficiency
factors and gains (how many times you use the code, CPU time versus ease-of-use) to
reach a solution that is best for your application.
144
Chapter 11
Each time the macro STATS1 is called, the macro processor generates the definition of
the macro TITLE as text, recognizes a macro definition, and compiles the macro TITLE.
In this case, STATS1 was called three times, which means the TITLE macro was
compiled three times. With only a few statements, this task takes only micro-seconds;
but in large macros with hundreds of statements, the wasted time could be significant.
The values of PRODUCT and YEAR are available to TITLE because its call is within
the definition of STATS1. Therefore, it is unnecessary to nest the definition of TITLE to
make values available to TITLE's scope. Nesting definitions are also unnecessary
because no values in the definition of the TITLE statement are dependent on values that
change during the execution of STATS1. (Even if the definition of the TITLE statement
depended on such values, you could use a global macro variable to effect the changes,
rather than nest the definition.)
The following program shows the macros defined separately:
/* Separating Macro Definitions--EFFICIENT */
%macro stats2(product,year);
proc means data=products;
where product="&product" and year=&year;
%title
run;
%mend stats2;
%macro title;
title "Statistics for &product in &year";
%if &year>1929 and &year<1935 %then
%do;
title2 "Some Data Might Be Missing";
%end;
%mend title;
%stats2(cotton,1999)
%stats2(brick,2002)
%stats2(lamb,2001)
Here, because the definition of the macro TITLE is outside the definition of the macro
STATS2, TITLE is compiled only once, even though STATS2 is called three times.
Again, the values of PRODUCT and YEAR are available to TITLE because its call is
within the definition of STATS2.
Note: Another reason to define macros separately is because it makes them easier to
maintain, each in a separate file.
145
.
%end;
%mend test;
%test(Four Score and Seven Years Ago)
A more efficient method would be to evaluate the length of THETEXT once and assign
that value to another macro variable. Then, use that variable in the %DO %WHILE
statement, as in the following program:
/* MORE EFFICIENT MACRO */
%macro test2(thetext);
%let x=1;
%let length=%length(&thetext);
%do %while (&x > &length);
.
.
.
%end;
%mend test2;
%test(Four Score and Seven Years Ago)
As another example, suppose you want to use the %SUBSTR function to pull the year
out of the value of SYSDATE. Instead of using %SUBSTR repeatedly in your code,
assign the value of the %SUBSTR(&SYSDATE, 6) to a macro variable, then use that
variable whenever you need the year.
146
Chapter 11
from the compiled code, you should keep a copy of the source code in a safe place,
in case the compiled code becomes corrupted for some reason. Having a copy of the
source is also necessary if you intend to modify the macro at a later time.
See Storing and Reusing Macros on page 113 for more information about the stored
compiled macro facility.
Note: The compiled code generated by the stored compiled macro facility is not
portable. If you need to transfer macros to another host environment, you must move
the source code and recompile and store it on the new host.
Do not store more than one macro in each autocall library file.
Although these two practices are used by SAS and do work, they contribute significantly
to code-maintenance effort and therefore are less efficient.
Reset macro variables to null if the variables are no longer going to be referenced.
Use triple ampersands to force an additional scan of macro variables with long
values, when appropriate. See Storing Only One Copy of a Long Macro Variable
Value on page 147 for more information.
Adjust the values of the MSYMTABMAX= System Option on page 354 and
MVARSIZE= System Option on page 355 to fit your situation. In general,
increase the values if disk space is in short supply; decrease the values if memory is
in short supply. MSYMTABMAX affects the space available for storing macro
variable symbol tables; MVARSIZE affects the space available for storing values of
individual macro variables.
147
First, the macro CHECK generates the program statements contained in the parameter
VAL (a macro variable that is defined in the %MACRO statement and passed in from
the macro call). Then, the %INDEX function searches the value of VAL for the
characters run;. (The %STR function causes the semicolon to be treated as text.) If the
characters are not present, the %INDEX function returns 0. The %IF condition becomes
true, and the macro processor generates a RUN statement.
To use the macro CHECK with the variable PGM, assign the parameter VAL the value
of PGM in the macro call:
%check(&pgm)
The macro CHECK works properly. However, the macro processor assigns the value of
PGM as the value of VAL during the execution of CHECK. Thus, the macro processor
must store two long values (the value of PGM and the value of VAL) while CHECK is
executing.
To make the program more efficient, write the macro so that it uses the value of PGM
rather than copying the value into VAL:
%macro check2(val); /* more efficient macro */
&&&val
%if %index(&&&val,%str(run;))=0 %then %str(run;);
%mend check2;
%check2(pgm)
The macro CHECK2 produces the same result as the macro CHECK:
148
Chapter 11
However, in the macro CHECK2, the value assigned to VAL is simply the name PGM,
not the value of PGM. The macro processor resolves &&&VAL into &PGM and then
into the SAS statements contained in the macro variable PGM. Thus, the long value is
stored only once.
Task
SAS Language
Function or
Functions
FILENAME,
FILEREF,
PATHNAME
Open a file
FOPEN, MOPEN
FEXIST, FILEEXIST
FINFO,
FOPTNAME,
FOPTNUM
FAPPEND, FWRITE
FPOINT, FREAD,
FREWIND, FRLEN
Close a file
FCLOSE
149
Task
SAS Language
Function or
Functions
Delete a file
FDELETE
Open a directory
DOPEN
DINFO, DNUM,
DOPTNAME,
DOPTNUM, DREAD
Close a directory
DCLOSE
GETOPTION
FCOL, FGET,
FNOTE, FPOS,
FPUT, FSEP
LIBNAME, LIBREF,
PATHNAME
SYSRC
Note: Of course, you can also use other functions, such as ABS, MAX, and
TRANWRD, with %SYSFUNC. A few SAS language functions are not available
with %SYSFUNC. See %SYSFUNC and %QSYSFUNC Functions on page 268
for more details.
150
Chapter 11
Type
SYSDEVIC
SYSENV
Read-only
SYSJOBID
Read-only
SYSRC
SYSSCP
Read-only
SYSSCPL
Read-only
SYSPARM
Task
151
Here is a call to the macro DELFILE in a PC environment that deletes a file named C:
\SAS\SASUSER\DOC1.TMP:
%delfile(c:\sas\sasuser\doc1)
In this program, note the use of the portable %SYSEXEC statement to carry out the
host-specific operating system commands.
Now, suppose you know your macro application is going to run on some version of
Microsoft Windows. The SYSSCPL automatic macro variable provides information
about the name of the host environment, similar to the SYSSCP automatic macro
variable. However, SYSSCPL provides more information and enables you to further
tailor your macro code.
When this program executes, you end up with a data set that contains data for only the
town that you are interested in, and you can change what data set is generated before you
start your SAS job.
Now suppose you want to further use the value of SYSPARM to control what
procedures your job uses. The following macro does just that:
%macro select;
%if %upcase(&sysparm) eq BOSTON %then
%do;
proc report ... more SAS code;
title "Report on &sysparm";
run;
%end;
%if %upcase(&sysparm) eq CHICAGO %then
%do;
proc chart ... more SAS code;
title "Growth Values for &sysparm";
run;
%end;
.
. /* more macro code */
.
%mend select;
152
Chapter 11
SYSPARM Details
The value of the SYSPARM automatic macro variable is the same as the value of the
SYSPARM= system option, which is equivalent to the return value of the SAS language
function SYSPARM. The default value is null. Because you can use the SYSPARM=
system option at SAS invocation, you can set the value of the SYSPARM automatic
macro variable before your SAS session begins.
SYSRC Details
The value of the SYSRC automatic macro variable contains the last return code
generated by your host environment. The code returned is based on commands that you
execute using the X statement in open code, the X command a windowing environment,
or the %SYSEXEC macro statement (as well as the nonportable %TSO and %CMS
macro statements). Use the SYSRC automatic macro variable to test the success or
failure of a host environment command.
Note: While it does not generate an error message in the SAS log, the SYSRC automatic
macro variable is not useful under all host environments. For example, under some
host environments, the value of this variable is always 99, regardless of the success
or failure of the host environment command. Check the SAS companion for your
host environment to determine whether the SYSRC automatic macro variable is
useful for your host environment.
On EBCDIC systems, such as z/OS, and VSE, this program causes the following to
be written to the SAS log:
*** 1 is greater than a ***
But on ASCII systems (such as UNIX or Windows), the following is written to the
SAS log:
*** 1 is less than a ***
MSYMTABMAX=
The MSYMTABMAX system option specifies the maximum amount of memory
available to the macro variable symbol tables. If this value is exceeded, the symbol
tables are stored in a WORK file on disk.
153
MVARSIZE=
The MVARSIZE system option specifies the maximum number of bytes for any
macro variable stored in memory. If this value is exceeded, the macro variable is
stored in a WORK file on disk.
%SCAN and %QSCAN
The default delimiters that the %SCAN and %QSCAN functions use to search for
words in a string are different on ASCII and EBCDIC systems. The default
delimiters are
ASCII systems
blank . < ( + & ! $ * ) ; ^ / , % |
EBCDIC systems
blank . < ( + | & ! $ * ) ; / , %
%SYSEXEC, %TSO, and %CMS
The %SYSEXEC, %TSO, and %CMS macro statements enable you to issue a host
environment command.
%SYSGET
On some host environments, the %SYSGET function returns the value of host
environment variables and symbols.
SYSPARM=
The SYSPARM= system option can supply a value for the SYSPARM automatic
macro variable at SAS invocation. It is useful in customizing a production job. For
example, to create a title based on a city as part of noninteractive execution, the
production program might contain the SYSPARM= system option in the SAS
configuration file or the command that invokes SAS. See SYSPARM Details on
page 152 for an example using the SYSPARM= system option in conjunction with
the SYSPARM automatic macro variable.
SASMSTORE=
The SASMSTORE= system option specifies the location of stored compiled macros.
SASAUTOS=
The SASAUTOS= system option specifies the location of autocall macros.
Description
SYS99ERR
SYS99INF
SYS99MSG
SYS99R15
154
Chapter 11
Description
SYSJCTID
SYSJMRID
SYSUID
Naming Macros and External Files for Use with the Autocall Facility
When naming macros that will be stored in an autocall library, there are restrictions
depending on your host environment. Here is a list of some of the restrictions:
Every host environment has file naming conventions. If the host environment uses
file extensions, use .sas as the extension of your macro files.
Although SAS names can contain underscores, some host environments do not use
them in the names of external files. Some host environments that do not use
underscores do use the pound sign (#) and might automatically replace the # with _
when the macro is used.
Some host environments have reserved words, such as CON and NULL. Do not use
reserved words when naming autocall macros or external files.
Some hosts have host-specific autocall macros. Do not define a macro with the same
name as these autocall macros.
Macro catalogs are not portable. Remember to always save your macro source code
in a safe place.
On UNIX systems the filename that contains the autocall macro must be all
lowercase letters.
155
Chapter 12
Also covered are the interfaces to the macro facility provided by Base SAS software, the
SQL procedure, and SAS Component Language as well as selected autocall macros and
macro system options.
156
Chapter 12
Macro Statements
Using Macro Statements
A macro language statement instructs the macro processor to perform an operation. It
consists of a string of keywords, SAS names, and special characters and operators, and it
ends in a semicolon. Some macro language statements are used only in macro
definitions, but you can use others anywhere in a SAS session or job, either inside or
outside macro definitions (referred to as open code). The following table lists macro
language statements that you can use in both macro definitions and open code.
Table 12.1
Statement
Description
%* comment
%COPY
%DISPLAY
%GLOBAL
%INPUT
%LET
%MACRO
%PUT
%SYMDEL
%SYSCALL
%SYSEXEC
%SYSLPUT
%SYSMACDELETE
%SYSMSTORECLEAR
%SYSRPUT
%WINDOW
Macro Statements
157
The following table lists macro language statements that you can use only in macro
definitions.
Table 12.2
Statement
Description
%ABORT
Stops the macro that is executing along with the current DATA
step, SAS job, or SAS session.
%DO
%DO, Iterative
%DO %UNTIL
%DO %WHILE
%END
%GOTO
%IF-%THEN/%ELSE
%label:
%LOCAL
%MEND
%RETURN
%DO %UNTIL(expression);
%DO %WHILE(expression);
For details about operands and operators in expressions, see Macro Expressions on
page 71.
158
Chapter 12
Macro Functions
Using Macro Functions
A macro language function processes one or more arguments and produces a result. You
can use all macro functions in both macro definitions and open code. Macro functions
include character functions, evaluation functions, and quoting functions. The macro
language functions are listed in the following table.
Table 12.3
Macro Functions
Function
Description
%BQUOTE,
%NRBQUOTE
%EVAL
%INDEX
%LENGTH
%QUOTE, %NRQUOTE
%SCAN, %QSCAN
%STR, %NRSTR
%SUBSTR, %QSUBSTR
%SUPERQ
%SYMEXIST
%SYMGLOBL
%SYMLOCAL
%SYSEVALF
Macro Functions
159
Function
Description
%SYSFUNC,
%QSYSFUNC
%SYSGET
%SYSMACEXEC
%SYSMACEXIST
%SYSMEXECDEPTH
%SYSMEXECNAME
%SYSPROD
%UNQUOTE
%UPCASE, %QUPCASE
Function
Description
%INDEX
%LENGTH
%SCAN, %QSCAN
%SUBSTR, %QSUBSTR
%UPCASE, %QUPCASE
For macro character functions that have a Q form (for example, %SCAN and
%QSCAN), the two functions work alike except that the function beginning with Q
masks special characters and mnemonic operators in its result. Use the function
beginning with Q when an argument has been previously masked with a macro quoting
function or when you want the result to be masked (for example, when the result might
160
Chapter 12
contain an unmatched quotation mark or parenthesis). For details, see Macro Quoting
on page 80.
Many macro character functions have names corresponding to SAS character functions
and perform similar tasks (such as %SUBSTR and SUBSTR). But, macro functions
operate before the DATA step executes. Consider the following DATA step:
data out.%substr(&sysday,1,3);
/* macro function */
set in.weekly (keep=name code sales);
length location $4;
location=substr(code,1,4);
/* SAS function */
run;
Running the program on Monday creates the data set name OUT.MON:
data out.MON;
/* macro function */
set in.weekly (keep=name code sales);
length location $4;
location=substr(code,1,4);
/* SAS function */
run;
Suppose that the IN.WEEKLY variable CODE contains the values cary18593 and
apex19624. The SAS function SUBSTR operates during DATA step execution and
assigns these values to the variable LOCATION: cary and apex.
For more information, see Macro Expressions on page 71. The following table lists the
macro evaluation functions.
Table 12.5
Function
Description
%EVAL
%SYSEVALF
Macro Functions
161
Function
Description
%BQUOTE,
%NRBQUOTE
%QUOTE, %NRQUOTE
%STR, %NRSTR
%SUPERQ
%UNQUOTE
162
Chapter 12
cannot resolve. %SUPERQ protects the value of a macro variable from any attempt at
further resolution.
Of the quoting functions that resolve values during execution, %BQUOTE and
%NRBQUOTE are the most flexible. For example, the %BQUOTE function prevents
the following %IF statement from producing an error if the macro variable STATE
resolves to OR (for Oregon). Without %BQUOTE, the macro processor would interpret
the abbreviation for Oregon as the logical operator OR.
%if %bquote(&state)=nc %then %put North Carolina Dept. of
Revenue;
%SUPERQ fetches the value of a macro variable from the macro symbol table and
masks it immediately, preventing the macro processor from attempting to resolve any
part of the resolved value. For example, %SUPERQ prevents the following %LET
statement from producing an error when it resolves to a value with an ampersand, like
Smith&Jones. Without %SUPERQ, the macro processor would attempt to resolve
&Jones.
%let testvar=%superq(corpname);
/* No ampersand in argument to %superq. */
(%SUPERQ takes as its argument either a macro variable name without an ampersand or
a text expression that yields a macro variable name.)
If the argument for one of these functions contains a character string with the comment
symbols /* and -->, use a %STR function with each character. For example, consider
these statements:
%let instruct=Comments can start with %str(/)%str(*).;
%put &instruct;
Note: Unexpected results can occur if the comment symbols are not quoted with a
quoting function.
For more information about macro quoting, see Macro Quoting on page 80.
Macro Functions
163
Functions
Description
%KCMPRES
%KINDEX
%KLENGTH
For more information, see Macro Functions for NLS in SAS National Language
Support (NLS): Reference Guide.
Function
Description
%SYMEXIST
%SYMGLOBL
%SYMLOCAL
164
Chapter 12
Description
%SYSFUNC,
%QSYSFUNC
%SYSGET
%SYSPROD
The %SYSFUNC and %QSYSFUNC functions enable most of the functions from Base
SAS software, a function written with the SAS/TOOLKIT software, or a function
created using the FCMP procedure available to the macro facility. Consider the
following examples:
/* in a DATA step or SCL program */
dsid=open("sasuser.houses","i");
/* in the macro facility */
%let dsid = %sysfunc(open(sasuser.houses,i));
For more information, see %SYSFUNC and %QSYSFUNC Functions on page 268.
SYS is reserved for use by SAS for automatic macro variables. For a complete list of
reserved words in the macro language, see Reserved Words in the Macro Facility
on page 363.
For example, suppose you want to include the day and date that your current SAS
session was invoked. Write the FOOTNOTE statement to reference the automatic macro
variables SYSDAY and SYSDATE9:
footnote "Report for &sysday, &sysdate9";
If the current SAS session was invoked on June 13, 2007, macro variable resolution
causes SAS to see this statement:
FOOTNOTE "Report for Friday, 13JUN2007";
All automatic variables except for SYSPBUFF are global and are created when you
invoke SAS. The following table lists the automatic macro variables and describes their
READ and WRITE status.
Variable
SYSADDRBITS
Read-only
SYSBUFFR
SYSCC
SYSCHARWIDTH
Read-only
SYSCMD
SYSDATE
Read-only
SYSDATE9
Read-only
SYSDAY
Read-only
SYSDEVIC
SYSDMG
SYSDSN
SYSENCODING
Read-only
SYSENDIAN
Read-only
SYSENV
Read-only
SYSERR
Read-only
SYSERRORTEXT
Read only
SYSFILRC
SYSHOSTNAME
Read-only
SYSINDEX
Read-only
SYSINFO
Read-only
SYSJOBID
Read-only
SYSLAST
SYSLCKRC
SYSLIBRC
SYSLOGAPPLNAME
Read-only
165
166
Chapter 12
SYSMACRONAME
Read-only
SYSMENV
Read-only
SYSMSG
SYSNCPU
Read-only
SYSNOBS
Read-only
SYSODSESCAPECHAR
Read-only
SYSODSPATH
Read-only
SYSPARM
SYSPBUFF
SYSPROCESSID
Read-only
SYSPROCESSNAME
Read-only
SYSPROCNAME
Read-only
SYSRC
SYSSCP
Read-only
SYSSCPL
Read-only
SYSSITE
Read-only
SYSSIZEOFLONG
Read-only
SYSSIZEOFPTR
Read-only
SYSSIZEOFUNICODE
Read-only
SYSSTARTID
Read-only
SYSSTARTNAME
Read-only
SYSTCPIPHOSTNAME
Read-only
SYSTIME
Read-only
SYSUSERID
Read-only
SYSVER
Read-only
SYSVLONG
Read-only
SYSVLONG4
Read-only
SYSWARNINGTEXT
Read-only
167
Element
Description
EXECUTE routine
RESOLVE function
SYMDEL routine
SYMEXIST function
SYMGET function
SYMGLOBL function
SYMLOCAL function
SYMPUT/SYMPUTX
routines
The SAS Component Language (SCL) provides two elements for using the SAS macro
facility to define macros and macro variables for SCL programs.
Table 12.11
Element
Description
SYMGETN
168
Chapter 12
Description
SYMPUTN
The SQL procedure provides a feature for creating and updating macro variables with
values produced by the SQL procedure.
Table 12.12
Element
Description
INTO
For more information, see Interfaces with the Macro Facility on page 101.
the OPTIONS command in the SAS windowing environment to open the OPTIONS
window
For details about these options, see SAS System Options, in SAS System Options:
Reference.
The following table lists selected autocall macros.
169
Macro
Description
COMPSTOR
DATATYP
SYSRC
VERIFY
170
Chapter 12
2. executes any open code (macro statements or SAS source statements not within any
macro definition) in that member
3. executes the macro with the name that you invoked
After the macro is compiled, it is stored in the WORK.SASMACR catalog and is
available for use in the SAS session without having to be recompiled.
You can also create your own autocall macros and store them in libraries for easy
execution. For more information, see Storing and Reusing Macros on page 113.
Autocall Macros
Description
%KVERIFY
For more information, see Autocall Macros for NLS in SAS National Language
Support (NLS): Reference Guide.
Option
Description
CMDMAC
IMPLMAC
MACRO
MAUTOCOMPLOC
Displays in the SAS log the source location of the autocall macros
when the autocall macro is compiled.
171
Option
Description
MAUTOLOCDISPLAY
Displays the source location of the autocall macros in the SAS log
when the autocall macro is invoked.
MAUTOLOCINDES
MAUTOSOURCE
MCOMPILE
MCOMPILENOTE
MCOVERAGE
MCOVERAGELOC
MERROR
MEXECNOTE
MEXECSIZE
MFILE
MINDELIMITER
MINOPERATOR
MLOGIC
MLOGICNEST
MPRINT
MPRINTNEST
MRECALL
MREPLACE
172
Chapter 12
Description
MSTORED
MSYMTABMAX
MVARSIZE
SASAUTOS
SASMSTORE
SERROR
SYMBOLGEN
SYSPARM
173
Part 2
174
175
Chapter 13
AutoCall Macros
AutoCall Macros
SAS supplies libraries of autocall macros to each SAS site. The libraries that you receive
depend on the SAS products licensed at your site. You can use autocall macros without
having to define or include them in your programs.
Dictionary
%CMPRES and %QCMPRES Autocall Macros
Compress multiple blanks and remove leading and trailing blanks.
Type:
Requirement:
Autocall macros
MAUTOSOURCE system option
176
Chapter 13
AutoCall Macros
Syntax
%CMPRES (text | text expression)
%QCMPRES (text | text expression)
Details
Note: Autocall macros are included in a library supplied by SAS Institute. This library
might not be installed at your site or might be a site-specific version. If you cannot
access this macro or if you want to find out if it is a site-specific version, see your
on-site SAS support personnel. For more information, see Storing and Reusing
Macros on page 113.
The CMPRES and QCMPRES macros compress multiple blanks and remove leading
and trailing blanks. If the argument might contain a special character or mnemonic
operator, listed below, use %QCMPRES.
CMPRES returns an unquoted result, even if the argument is quoted. QCMPRES
produces a result with the following special characters and mnemonic operators masked,
so the macro processor interprets them as text instead of as elements of the macro
language:
& % ' " ( ) + * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
Examples
Example 1: Removing Unnecessary Blanks with %CMPRES
%macro createft;
%let footnote="The result of &x &op &y is %eval(&x &op &y).";
footnote1 &footnote;
footnote2 %cmpres(&footnote);
%mend createft;
data _null_;
x=5;
y=10;
call symput('x',x);
/* Uses BEST12. format */
call symput('y',y);
/* Uses BEST12. format */
call symput('op','+'); /* Uses $1. format
*/
run;
%createft
x=5;
y=10;
a=%nrstr(%eval(&x
+
QCMPRES: %qcmpres(&a);
CMPRES: %cmpres(&a);
&y));
177
Autocall macro
MAUTOSOURCE system option
Syntax
%COMPSTOR (PATHNAME=SAS library)
Required Argument
SAS-data-library
is the physical name of a SAS library on your host system. The COMPSTOR macro
uses this value to automatically assign a libref. Do not enclose SAS library in
quotation marks.
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
The COMPSTOR macro compiles the following autocall macros in a SAS catalog
named SASMACR in a permanent SAS library. The overhead of compiling is saved
when these macros are called for the first time in a SAS session. You can use the
COMPSTOR macro as an example of how to create compiled stored macros. For more
information about the autocall macros that are supplied by SAS or about using stored
compiled macros, see Storing and Reusing Macros on page 113.
%CMPRES
%DATATYP
%LEFT
%QCMPRES
%QLEFT
%QTRIM
%TRIM
%VERIFY
Requirement:
Autocall macro
Autocall macros are included in a library supplied by SAS. This library might not be
installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel.
MAUTOSOURCE system option
178
Chapter 13
AutoCall Macros
Syntax
%DATATYP (text | text expression)
Details
The DATATYP macro returns a value of NUMERIC when an argument consists of digits
and a leading plus or minus sign, a decimal, or a scientific or floating-point exponent (E
or D in uppercase or lowercase letters). Otherwise, it returns the value CHAR.
Note: %DATATYP does not identify hexadecimal numbers.
DBCS
Autocall macro for NLS
MAUTOSOURCE system option
Syntax
%KVERIFY(source, excerpt)
179
Required Arguments
source
text or a text expression. This is the text that you want to examine for characters that
do not exist in the excerpt.
excerpt
text or a text expression. This is the text that defines the set of characters that
%KVERIFY uses to examine the source.
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel.
%KVERIFY returns the position of the first character in the source that is not also
present in excerpt. If all the characters in source are present in the excerpt, %KVERIFY
returns a value of 0.
Autocall macro
MAUTOSOURCE system option
Syntax
%LEFT(text | text expression)
%QLEFT(text | text expression)
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
The LEFT macro and the QLEFT macro both left-align arguments by removing leading
blanks. If the argument might contain a special character or mnemonic operator, listed
below, use %QLEFT.
%LEFT returns an unquoted result, even if the argument is quoted. %QLEFT produces a
result with the following special characters and mnemonic operators masked so the
macro processor interprets them as text instead of as elements of the macro language:
& % ' " ( ) + * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
180
Chapter 13
AutoCall Macros
The %PUT statement writes the following line to the SAS log:
*
&sysday
* *&sysday
* *Tuesday
Autocall macros
MAUTOSOURCE system option
Syntax
%LOWCASE (text | text expression)
%QLOWCASE (text | text expression)
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
The %LOWCASE and %QLOWCASE macros change uppercase alphabetic characters
to their lowercase equivalents. If the argument might contain a special character or
mnemonic operator, listed below, use %QLOWCASE.
%LOWCASE returns a result without quotation marks, even if the argument has
quotation marks. %QLOWCASE produces a result with the following special characters
and mnemonic operators masked so the macro processor interprets them as text instead
of as elements of the macro language:
& % ' " ( ) + * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
181
%let newtitle=&newtitle&char;
%let lastchar=&char;
%end;
TITLE "&newtitle";
%mend;
%initcaps(%str(sales: COMMAND REFERENCE, VERSION 2, SECOND EDITION))
Autocall macro
MAUTOSOURCE system option
Syntax
%QCMPRES (text | text expression)
Without Arguments
See %CMPRES and %QCMPRES Autocall Macros on page 175.
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
Autocall macro
MAUTOSOURCE system option
Syntax
%QLEFT (text | text expression)
Without Arguments
See %LEFT and %QLEFT Autocall Macro on page 179.
182
Chapter 13
AutoCall Macros
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
Autocall macro
MAUTOSOURCE system option
Syntax
%QLOWCASE(text | text expression)
Without Arguments
See %LOWCASE and %QLOWCASE Autocall Macros on page 180.
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
Autocall macro
MAUTOSOURCE system option
Syntax
%QTRIM (text | text expression)
Without Arguments
See %TRIM and %QTRIM Autocall Macro on page 188.
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
183
support personnel. For more information, see Storing and Reusing Macros on page
113.
Autocall macro
MAUTOSOURCE system option
Syntax
%SYSRC(character-string)
Required Argument
character-string
is one of the mnemonic values listed in Table 13.1 on page 183 or a text expression
that produces the mnemonic value.
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
The SYSRC macro enables you to test for return codes produced by SCL functions, the
MODIFY statement, and the SET statement with the KEY= option. The SYSRC autocall
macro tests for the error conditions by using mnemonic strings rather than the numeric
values associated with the error conditions.
When you invoke the SYSRC macro with a mnemonic string, the macro generates a
SAS return code. The mnemonics are easier to read than the numeric values, which are
not intuitive and subject to change.
You can test for specific errors in SCL functions by comparing the value returned by the
function with the value returned by the SYSRC macro with the corresponding
mnemonic. To test for errors in the most recent MODIFY or SET statement with the
KEY= option, compare the value of the _IORC_ automatic variable with the value
returned by the SYSRC macro when you invoke it with the value of the appropriate
mnemonic.
The following table lists the mnemonic values to specify with the SYSRC function and a
description of the corresponding error.
Table 13.1
Mnemonic
184
Chapter 13
AutoCall Macros
Mnemonic
Description
_SEIBASN
_SEINUSE
_SEINVLB
_SEINVLN
_SELBACC
_SELBUSE
_SELGASN
_SENOASN
_SENOLNM
_SESEQLB
_SWDUPLB
_SWNOLIB
Fileref Messages
_SELOGNM
_SWLNASN
_DSEMTR
_DSENOM
_SEBAUTH
_SEBDIND
_SEDSMOD
The data set is not open in the correct mode for the specified
operation.
_SEDTLEN
_SEINDCF
185
Mnemonic
Description
_SEINVMD
_SEINVPN
_SEMBACC
You do not have the level of access required to open the data
set in the requested mode.
_SENOLCK
_SENOMAC
_SENOSAS
_SEVARCF
_SWBOF
_SWNOWHR
_SWSEQ
_SWWAUG
_SWWCLR
_SWWREP
_SEDLREC
_SEFOPEN
_SEINVON
_SEINVOV
_SEINVPS
_SELOCK
_SENOACC
You do not have the level of access required to open the file
in the requested mode.
_SENOALL
_SENOCHN
186
Chapter 13
AutoCall Macros
Mnemonic
Description
_SENODEL
_SENODLT
_SENOERT
_SENOOAC
_SENOOPN
_SENOPF
_SENORD
_SENORDX
_SENOTRD
_SENOUPD
_SENOWRT
_SEOBJLK
_SERECRD
_SWACMEM
_SWDLREC
_SWEOF
End of file.
_SWNOFLE
_SWNOPF
_SWNOREP
_SWNOTFL
_SWNOUPD
Library/Member/Entry Messages
_SEBDMT
_SEDLT
_SELKUSR
Description
_SEMLEN
_SENOLKH
_SENOMEM
_SWKNXL
_SWLKUSR
_SWLKYOU
_SWNOLKH
187
Miscellaneous Operations
_SEDEVOF
_SEDSKFL
_SEINVDV
_SENORNG
_SOK
_SWINVCC
_SWNODSK
_SWPAUAC
_SWPAUSL
_SWPAUU1
_SWPAUU2
Comparisons
The SYSRC autocall macro and the SYSRC automatic macro variable are not the same.
For more information, see SYSRC Automatic Macro Variable on page 212.
188
Chapter 13
AutoCall Macros
data big;
modify big trans;
by id;
if _iorc_=%sysrc(_dsenmr) then put 'WARNING: Check ID=' id;
run;
Autocall macro
MAUTOSOURCE system option
Syntax
%TRIM(text | text expression)
%QTRIM(text | text expression)
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
The TRIM macro and the QTRIM macro both trim trailing blanks. If the argument
contains a special character or mnemonic operator, listed below, use %QTRIM.
QTRIM produces a result with the following special characters and mnemonic operators
masked so the macro processor interprets them as text instead of as elements of the
macro language:
& % ' " ( ) + * / < > = ~ ; , #
AND OR NOT EQ NE LE LT GE GT IN
blank
Examples
Example 1: Removing Trailing Blanks
In this example, the TRIM autocall macro removes the trailing blanks from a message
that is written to the SAS log.
%macro numobs(dsn);
%local num;
data _null_;
set &dsn nobs=count;
call symput('num', left(put(count,8.)));
stop;
run;
%if &num eq 0 %then
%put There were NO observations in %upcase(&dsn).;
%else
%put There were %trim(&num) observations in %upcase(&dsn).;
189
%mend numobs;
%numobs(sample)
If the data set SAMPLE contains six observations, then the %PUT statement writes this
line to the SAS log:
There were 6 observations in SAMPLE.
&sysdate
* *
&sysdate* *
28JAN99*
Autocall macro
MAUTOSOURCE system option
Syntax
%VERIFY(source, excerpt)
Required Arguments
source
is text or a text expression that you want to examine for characters that do not exist
in excerpt.
excerpt
is text or a text expression. This is the text that defines the set of characters that
%VERIFY uses to examine source.
Details
Note: Autocall macros are included in a library supplied by SAS. This library might not
be installed at your site or might be a site-specific version. If you cannot access this
macro or if you want to find out if it is a site-specific version, see your on-site SAS
support personnel. For more information, see Storing and Reusing Macros on page
113.
%VERIFY returns the position of the first character in source that is not also present in
excerpt. If all characters in source are present in excerpt, %VERIFY returns 0.
190
Chapter 13
AutoCall Macros
When this program executes, the following is written to the SAS log:
FILE1 is a
1FILE: The
FILENAME1:
FILE$: The
valid fileref.
first character cannot be "1".
The fileref must be 8 characters or less.
fileref cannot contain "$".
191
Chapter 14
192
Chapter 14
Dictionary
SYSADDRBITS Automatic Macro Variable
Contains the number of bits of an address.
Type:
Details
The SYSADDRBITS automatic macro variable contains the number of bits needed for
an address.
Details
Until the first execution of a %INPUT statement, SYSBUFFR has a null value.
However, SYSBUFFR receives a new value during each execution of a %INPUT
statement, either the text entered in response to the %INPUT statement where there is no
193
If you enter the following text, there is not a one-to-one match between the two variable
names and the text:
Angel Tributary of Caroni
As the SAS log demonstrates, the text stored in SYSBUFFR includes leading and
embedded blanks.
Details
SYSCC is a read and write automatic macro variable that enables you to reset the job
condition code and to recover from conditions that prevent subsequent steps from
running.
A normal exit internally to SAS is 0. The host code translates the internal value to a
meaningful condition code by each host for each operating environment. &SYSCC of 0
at SAS termination is the value of success for that operating environment's return code.
The following are examples of successful condition codes:
Table 14.1
Operating Environment
Value
z/OS
RC 0
OpenVMS
$STATUS = 1
194
Chapter 14
The method to check the operating environment return code is host dependent.
The warning condition code in SAS sets &SYSCC to 4.
Note: When the ERRORCHECK= SAS system option is set at NORMAL, the value of
SYSCC will be 0 even if an error exists in a LIBNAME or FILENAME statement, or
in a LOCK statement in SAS/SHARE software. The value of SYSCC will also be 0
when the %INCLUDE statement fails due to a nonexistent file. For more
information, see the ERRORCHECK= System Option in SAS System Options:
Reference.
Details
The character width value is either 1 (narrow) or 2 (wide).
Details
The value of SYSCMD is null before each execution of a %DISPLAY statement. If you
enter a word or phrase on the command line of a macro window and the windowing
environment does not recognize the command, SYSCMD receives that word or phrase as
its value. This method is the only way to change the value of SYSCMD, which
otherwise is a read-only variable. Use SYSCMD to enter values on the command line
that work like user-created windowing commands.
195
Details
SYSDATE contains a SAS date value in the DATE7. format, which displays a two-digit
date, the first three letters of the month name, and a two-digit year. The date does not
change during the individual job or session. For example, you could use SYSDATE in
programs to check the date before you execute code that you want to run on certain dates
of the month.
If you execute this macro on July 28, 1998, SAS sees the statements:
DATA _NULL_;
CALL SYMPUT("FDATE",LEFT(PUT("28JUL98"D,WORDDATE.)));
RUN;
TITLE "Tests for July 28, 1998";
For another method of formatting the current date, see the %SYSFUNC and
%QSYSFUNC functions.
196
Chapter 14
Details
SYSDATE9 contains a SAS date value in the DATE9. format, which displays a twodigit date, the first three letters of the month name, and a four-digit year. The date does
not change during the individual job or session. For example, you could use SYSDATE9
in programs to check the date before you execute code that you want to run on certain
dates of the month.
If you execute this macro on July 28, 2008, SAS sees the statements:
DATA _NULL_;
CALL SYMPUT("FDATE",LEFT(PUT("28JUL2008"D,WORDDATE.)));
RUN;
TITLE "Tests for July 28, 2008";
For another method of formatting the current date, see the %SYSFUNC and
%QSYSFUNC functions.
Details
You can use SYSDAY to check the current day before executing code that you want to
run on certain days of the week, provided you initialized your SAS session today.
When this statement executes on Wednesday, December 19, 2007 for a SAS session that
began executing on Monday, December 17, 2007, the following line is written to the
SAS log:
This SAS session started running on: Monday, 17DEC2007
197
Details
The current graphics device is the one specified at invocation of SAS. You can specify
the graphics device on the command line in response to a prompt when you use a
product that uses SAS/GRAPH. You can also specify the graphics device in a
configuration file. The name of the current graphics device is also the value of the SAS
system option DEVICE=.
For details, see the SAS documentation for your operating environment.
Note: The macro processor always stores the value of SYSDEVIC in unquoted form. To
quote the resolved value of SYSDEVIC, use the %SUPERQ macro quoting function.
Comparisons
Assigning a value to SYSDEVIC is the same as specifying a value for the DEVICE=
system option.
Details
You can use the value of SYSDMG as a condition to determine further action to take.
SYSDMG can contain the following values:
Table 14.2
Value
Description
One or more SAS tasks were terminated because of a damaged data set.
198
Chapter 14
Description
One or more automatic repairs of damaged data sets has occurred; the lastrepaired data set has index file removed, as requested.
One or more user requested repairs has occurred; the last-repaired data set
has index file removed, as requested.
Details
The libref and data set name are displayed in two left-aligned fields. If no SAS data set
has been created in the current program, SYSDSN returns eight blanks followed by
_NULL_ followed by two more blanks.
Note: The macro processor always stores the value of SYSDSN in unquoted form. To
quote the resolved value of SYSDSN, use the %SUPERQ macro quoting function.
Comparisons
Assigning a value to SYSDSN is the same as specifying a value for the _LAST_=
system option.
The value of SYSLAST is often more useful than SYSDSN because the value of
SYSLAST is formatted so that you can insert a reference to it directly into SAS code
in place of a data set name.
When these statements execute, the following lines are written to the SAS log:
Sysdsn produces: *WORK
TEST
Syslast produces: *WORK.TEST
*
When the libref or data set name contain fewer than eight characters, SYSDSN
maintains the blanks for the unused characters. SYSDSN does not display a period
between the libref and data set name fields.
199
Details
SYSENCODING displays the name with a maximum length of 12 bytes.
When this statement executes, the following comment is written to the SAS log:
The encoding for this SAS session is: wlatin1
Details
The SYSENDIAN automatic macro variable indicates the byte order of the current SAS
session. There are two possible values: LITTLE and BIG.
Details
The value of SYSENV is independent of the source of input. The following are values
for SYSENV:
FORE
when the SAS system option TERMINAL is in effect. For example, the value is
FORE when you run SAS interactively through a windowing environment.
BACK
when the SAS system option NOTERMINAL is in effect. For example, the value is
BACK when you submit a SAS job in batch mode.
200
Chapter 14
You can use SYSENV to check the execution mode before submitting code that requires
interactive processing. To use a %INPUT statement, the value of SYSENV must be
FORE. For details, see the SAS documentation for your operating environment.
Operating Environment Information
Some operating environments do not support the submission of jobs in batch mode.
In this case the value of SYSENV is always FORE. For details, see the SAS
documentation for your operating environment.
Details
You can use the value of SYSERR as a condition to determine further action to take or
to decide which parts of a SAS program to execute. SYSERR is used to detect major
system errors, such as out of memory or failure of the component system when used in
some procedures and DATA steps. SYSERR automatic macro variable is reset at each
step boundary. For the return code of a complete job, see SYSCC Automatic Macro
Variable on page 193.
SYSERR can contain the following values:
Table 14.3
SYSERR Values
Value
Description
>6
The following table contains warning return codes. The codes do not indicate any
specific problems. These codes are guidelines to identify the nature of a problem.
201
Warning Code
Description
108
112
116
120
The following table contains error return codes. The codes do not indicate any specific
problems. These codes are guidelines to identify the nature of a problem.
Table 14.5
Error Code
Description
1008
1012
1016
Out-of-memory condition
1020
I/O problem
2000
2001
3000
Syntax error
4000
9999
20000
20001
20002
25000
202
Chapter 14
The following SAS log output contains the return code number:
75
data NULL;
76
set doesnotexist;
ERROR: File WORK.DOESNOTEXIST.DATA does not exist.
77
78
run;
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.NULL might be incomplete. When this step was
stopped there were 0 observations and 0 variables.
WARNING: Data set WORK.NULL was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
real time
0.00 seconds
cpu time
0.00 seconds
79
80
%put &syserr;
1012
To retrieve error and warning text instead of the return code number, see
SYSERRORTEXT Automatic Macro Variable on page 202 and
SYSWARNINGTEXT Automatic Macro Variable on page 219.
Details
The value of SYSERRORTEXT is the text of the last error message generated in the
SAS log. For a list of SYSERR warnings and errors, see SYSERR Automatic Macro
Variable on page 200.
Note: If the last error message text that was generated contains an & or % and you are
using the %PUT statement, you must use the %SUPERQ macro quoting function to
mask the special characters to prevent further resolution of the value. The following
example uses the %PUT statement and the %SUPERQ macro quoting function:
%put %superq(syserrortext);
When these statements are executed, the following record is written to the SAS log:
203
1
data NULL;
2
set doesnotexist;
ERROR: File WORK.DOESNOTEXIST.DATA does not exist.
3
run;
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.NULL might be incomplete. When this step was
stopped there were 0 observations and 0 variables.
NOTE: DATA statement used (Total process time):
real time
11.16 seconds
cpu time
0.07 seconds
4 %put &syserrortext;
File WORK.DOESNOTEXIST.DATA does not exist.
Details
SYSFILRC checks whether the file or storage location referenced by the last
FILENAME statement exists. You can use SYSFILRC to confirm that a file or location
is allocated before attempting to access an external file.
The following are values for SYSFILRC:
Table 14.6
Value
Description
Details
SYSHOSTNAME contains the host name of the system that is running a single TCPIP
stack. For more information about TCPIP stacks, see your SAS host companion
documentation.
204
Chapter 14
Details
You can use SYSINDEX in a program that uses macros when you need a unique number
that changes after each macro invocation.
Details
Values of SYSINFO are described with the procedures that use it. You can use the value
of SYSINFO as a condition for determining further action to take or parts of a SAS
program to execute.
For example, PROC COMPARE, which compares two data sets, uses SYSINFO to store
a value that provides information about the result of the comparison.
Details
The value stored in SYSJOBID depends on the operating environment that you use to
run SAS. You can use SYSJOBID to check who is currently executing the job to restrict
certain processing or to issue commands that are specific to a user.
205
Details
The name is stored in the form libref.dataset. You can insert a reference to SYSLAST
directly into SAS code in place of a data set name. If no SAS data set has been created in
the current program, the value of SYSLAST is _NULL_, with no leading or trailing
blanks.
Note: The macro processor always stores the value of SYSLAST in unquoted form. To
quote the resolved value of SYSLAST, use the %SUPERQ macro quoting function.
Comparisons
Assigning a value to SYSLAST is the same as specifying a value for the _LAST_=
system option.
The value of SYSLAST is often more useful than SYSDSN because the value of
SYSLAST is formatted so that you can insert a reference to it directly into SAS code
in place of a data set name.
When these statements are executed, the following is written to the SAS log:
Sysdsn produces: *FIRSTLIBSALESRPT*
Syslast produces: *FIRSTLIB.SALESRPT*
The name stored in SYSLAST contains the period between the libref and data set name.
Details
The LOCK statement is a Base SAS software statement used to acquire and release an
exclusive lock on data objects in data libraries accessed through SAS/SHARE software.
The following are values for SYSLCKRC:
Table 14.7
Value
Description
>0
206
Chapter 14
Description
<0
The last LOCK statement was completed, but a WARNING or NOTE was
written to the SAS log.
Details
The code reports whether the last LIBNAME statement executed correctly. SYSLIBRC
checks whether the SAS library referenced by the last LIBNAME statement exists. For
example, you could use SYSLIBRC to confirm that a libref is allocated before you
attempt to access a permanent data set.
The following are values for SYSLIBRC:
Table 14.8
Value
Description
Details
The following code, when submitted from the current SAS session, writes the
LOGAPPLNAME for the current SAS session to the log:
%put &syslogapplname;
Type:
207
Details
When referenced outside of an executing macro, SYSMACRONAME returns the null
string.
Details
The following are values for SYSMENV:
Table 14.9
Value
Description
The macro currently executing was invoked from the command line of a
SAS window.
Details
Values assigned to SYSMSG do not require quotation marks. The value of SYSMSG is
set to null after each execution of a %DISPLAY statement.
When this program executes, the following is written to the SAS log:
208
Chapter 14
Details
SYSNCPU is an automatic macro variable that provides the current value of the
CPUCOUNT option. For more information about CPUCOUNT= System Option in
SAS System Options: Reference.
Comparisons
The following example shows the option CPUCOUNT set to 265.
options cpucount=265;
%put &sysncpu;
Details
The SYSNOBS contains the number of observations read from the last data set that was
closed by the previous procedure or DATA step.
Note: If the number of observations for the data set was not calculated by the previous
procedure or DATA step, the value of SYSNOBS is set to -1.
Details
SYSODSESCAPECHAR automatic macro variable contains the current ODS escape
character.
209
Details
The SYSODSPATH automatic macro variable contains the current ODS pathname.
Details
SYSPARM enables you to pass a character string from the operating environment to
SAS program steps and provides a means of accessing or using the string while a
program is executing. For example, you can use SYSPARM from the operating
environment to pass a title statement or a value for a program to process. You can also
set the value of SYSPARM within a SAS program. SYSPARM can be used anywhere in
a SAS program. The default value of SYSPARM is null (zero characters).
SYSPARM is most useful when specified at invocation of SAS. For details, see the SAS
documentation for your operating environment.
Note: The macro processor always stores the value of SYSPARM in unquoted form. To
quote the resolved value of SYSPARM, use the %SUPERQ macro quoting function.
Comparisons
Retrieving the value of SYSPARM is the same as using the SYSPARM() SAS
function.
Macro variable SYSPARM supplies the name of the data set for PROC REPORT:
proc report data=&sysparm
report=test.resorces.priority.rept;
210
Chapter 14
Details
SYSPBUFF resolves to the text supplied as parameter values in the invocation of a
macro that is defined with the PARMBUFF option. For name-style invocations, this text
includes the parentheses and commas. Using the PARMBUFF option and SYSPBUFF,
you can define a macro that accepts a varying number of parameters at each invocation.
If the macro definition includes both a set of parameters and the PARMBUFF option, the
macro invocation causes the parameters to receive values and the entire invocation list of
values to be assigned to SYSPBUFF.
When this program executes, this line is written to the SAS log:
Syspbuff contains: (purple,red,blue,teal)
211
Details
The process ID is a 32character hexadecimal string. The default value is null.
If you submit this statement in the SAS windowing environment of your second SAS
session, the following line is written to the SAS log:
DMS Process (2)
212
Chapter 14
Details
The value of SYSPROCNAME contains the name of the procedure specified by the user
in the PROC statement until a step boundary is reached.
Details
The code returned by SYSRC is based on commands that you execute using the X
statement in open code, the X command in a windowing environment, or the
%SYSEXEC, %TSO, or %CMS macro statements. Return codes are integers. The
default value of SYSRC is 0.
You can use SYSRC to check the return code of a system command before you continue
with a job. For return code examples, see the SAS companion for your operating
environment.
Details
SYSSCP and SYSSCPL resolve to an abbreviation of the name of your operating
environment. In some cases, SYSSCPL provides a more specific value than SYSSCP.
You could use SYSSCP and SYSSCPL to check the operating environment to execute
appropriate system commands.
The following table lists the values for SYSSCP and SYSSCPL.
Table 14.10
SYSSCP and SYSSCPL Values for Platforms Running SAS 9.2 or Later
Platform
SYSSCP Value
SYSSCPL Value
z/OS
OS
z/OS
VMS ITAN
OpenVMS
UNIX
HP-UX PA-RISC or H64
HP 64
HP-UX
HP IPF
HP-UX
SYSSCP Value
SYSSCPL Value
LIN X64
LINUX
LINUX
LINUX
AIX 64
AIX
SUN 64
SUNOS or SunOS
SUN X64
SUNOS
Windows
Windows XP Pro
WIN
XP_PRO
WIN
NET_SRV
WIN
NET_ASRV
WIN
NET_DSRV
WIN
X64_PRO
WIN
X64_SRV
WIN
X64_ESRV
WIN
X64_DSRV
WIN
W32_VSPRO
WIN
W32_SRV08
WIN
W32_ESRV08
WIN
W32_DSRV08
WIN
X64_VSPRO
WIN
X64_SRV08
WIN
X64_ESRV08
213
214
Chapter 14
SYSSCP Value
SYSSCPL Value
WIN
X64_DSRV08
WIN
W64_ESRV08
WIN
W64_ASRV
WIN
W64_DSRV
WIN
W64_SRV
Details
See SYSSCP and SYSSCPL Automatic Macro Variables on page 212.
215
Details
SAS assigns a site number to each site that licenses SAS software. The number displays
in the SAS log.
Details
The SYSSIZEOFLONG automatic macro variable contains the length of a long integer
in the current SAS session.
Details
The SYSSIZEOFPTR automatic macro variable contains the size in bytes of a pointer.
Details
The SYSSIZEOFUNICODE automatic macro variable contains the length of the
Unicode character in the current SAS session.
216
Chapter 14
Type:
Default:
Note:
Details
The ID is a 32-character hexadecimal string that can be passed to the WAITSAS
statement or the ENDSAS statement. The default value is null.
An example of a process name that can appear in the SAS log is as follows:
DMS Process (2)
217
Details
SYSTCPIPHOSTNAME contains the host name of the system that is running multiple
TCPIP stacks. For more information about TCPIP stacks, see your SAS host companion
documentation.
Details
The value is displayed in TIME5. format and does not change during the individual job
or session.
When this statement executes at 3 p.m., but your SAS session began executing at 9:30
a.m., the following comment is written to the SAS log:
This SAS session started running at: 09:30
218
Chapter 14
Comparisons
SYSVER provides the release number of the SAS software that is running. You can use
SYSVER to check for the release of SAS before running a job with newer features.
Submitting this statement (for a user of SAS 9.2) writes the following to the SAS log:
I am using release: 9.2
Comparisons
SYSVLONG provides the release number and maintenance level of SAS software, in
addition to the release number.
Submitting this statement (for a user of SAS 9.2) writes the following to the SAS log:
I am using release: 9.02.02M2D071609
Type:
See:
Comparisons
SYSVLONG4 provides a four digit year and the release number and maintenance level
of SAS software. SYSVLONG does not contain the four digit year but everything else is
the same.
Submitting this statement (for a user of SAS 9.2) writes this comment to the SAS log:
I am using maintenance release: 9.02.01B0D09112007
Details
The value of SYSWARNINGTEXT is the text of the last warning message generated in
the SAS log. For a list of SYSERR warnings and errors, see SYSERR Automatic
Macro Variable on page 200.
Note: If the last warning message text that was generated contains an & or % and you are
using the %PUT statement, you must use the %SUPERQ macro quoting function to
mask the special characters to prevent further resolution of the value. The following
example uses the %PUT statement and the %SUPERQ macro quoting function:
%put %superq(syswarningtext);
When these statements execute, the following comments are written to the SAS log:
220
Chapter 14
221
Chapter 15
Dictionary
CALL EXECUTE Routine
Resolves the argument, and issues the resolved value for execution at the next step boundary.
Type:
Syntax
CALL EXECUTE (argument);
Required Argument
argument
can be one of the following:
222
Chapter 15
the name of a DATA step character variable whose value is a text expression or a
SAS statement to be generated. Do not enclose the name of the DATA step
variable in quotation marks. For example, to use the value of the DATA step
variable FINDOBS, which contains a SAS statement or text expression, you can
use the following code:
call execute(findobs);
Details
If an EXECUTE routine argument is a macro invocation or resolves to one, the macro
executes immediately. Execution of SAS statements generated by the execution of the
macro will be delayed until after a step boundary. SAS macro statements, including
macro variable references, will execute immediately.
Note: Because of the delay of the execution of the SAS statements until after a step
boundary, references in SAS macro statements to macro variables created or updated
by the SAS statements will not resolve properly.
Note: Because macro references execute immediately and SAS statements do not
execute until after a step boundary, you cannot use CALL EXECUTE to invoke a
macro that contains references for macro variables that are created by CALL
SYMPUT in that macro. For a workaround, see the following TIP.
The following example uses the %NRSTR macro quoting function to mask the
macro statement. This function will delay the execution of macro statements until
after a step boundary.
TIP
call execute('%nrstr(%sales('||month||'))');
Comparisons
Unlike other elements of the macro facility, a CALL EXECUTE statement is available
regardless of the setting of the SAS system option MACRO|NOMACRO. In both cases,
EXECUTE places the value of its argument in the program stack. However, when
NOMACRO is set, any macro calls or macro functions in the argument are not resolved.
Examples
Example 1: Executing a Macro Conditionally
The following DATA step uses CALL EXECUTE to execute a macro only if the DATA
step writes at least one observation to the temporary data set.
%macro overdue;
proc print data=late;
title "Overdue Accounts As of &sysdate";
run;
%mend overdue;
data late;
set sasuser.billed end=final;
if datedue<=today()-30 then
223
do;
n+1;
output;
end;
if final and n then call execute('%overdue');
run;
Syntax
CALL SYMDEL(macro-variable<, option> );
224
Chapter 15
Required Arguments
macro-variable
can be any of the following:
the name of a macro variable within quotation marks but without an ampersand.
When a macro variable value contains another macro variable reference,
SYMDEL does not attempt to resolve the reference.
the name of a DATA step character variable, specified with no quotation marks,
which contains the name of a macro variable. If the value is not a valid SAS
name, or if the macro processor cannot find a macro variable of that name, SAS
writes a warning to the log.
option(s)
NOWARN
suppresses the warning message when an attempt is made to delete a non-existent
macro variable. NOWARN must be within quotation marks.
Details
CALL SYMDEL issues a warning when an attempt is made to delete a non-existent
macro variable. To suppress this message, use the NOWARN option.
Syntax
CALL SYMPUT(macro-variable, value);
Required Arguments
macro-variable
can be one of the following items:
a character string that is a SAS name, enclosed in quotation marks. For example,
to assign the character string testing to macro variable NEW, submit the
following statement:
call symput('new','testing');
the name of a character variable whose values are SAS names. For example, this
DATA step creates the three macro variables SHORTSTP, PITCHER, and
FRSTBASE and respectively assign them the values ANN, TOM, and BILL.
data team1;
input position : $8. player : $12.;
call symput(position,player);
datalines;
shortstp Ann
pitcher Tom
225
frstbase Bill
;
a character expression that produces a macro variable name. This form is useful
for creating a series of macro variables. For example, the CALL SYMPUT
statement builds a series of macro variable names by combining the character
string POS and the left-aligned value of _N_ and assigns values to the macro
variables POS1, POS2, and POS3.
data team2;
input position : $12. player $12.;
call symput('POS'||left(_n_), position);
datalines;
shortstp Ann
pitcher Tom
frstbase Bill
;
value
is the value to be assigned, which can be
a string enclosed in quotation marks. For example, this statement assigns the
string testing to the macro variable NEW:
call symput('new','testing');
the name of a numeric or character variable. The current value of the variable is
assigned as the value of the macro variable. If the variable is numeric, SAS
performs an automatic numeric-to-character conversion and writes a message in
the log. Later sections on formatting rules describe the rules that SYMPUT
follows in assigning character and numeric values of DATA step variables to
macro variables.
Note: This form is most useful when macro-variable is also the name of a SAS
variable or a character expression that contains a SAS variable. A unique
macro variable name and value can be created from each observation, as
shown in the previous example for creating the data set TEAM1.
If macro-variable is a character string, SYMPUT creates only one macro
variable, and its value changes in each iteration of the program. Only the value
assigned in the last iteration remains after program execution is finished.
a DATA step expression. The value returned by the expression in the current
observation is assigned as the value of macro-variable. In this example, the
macro variable named HOLDATE receives the value July 4,1997:
data c;
input holiday mmddyy.;
call symput('holdate',trim(left(put(holiday,worddate.))));
datalines;
070497
;
run;
226
Chapter 15
Details
If macro-variable does not exist, SYMPUT creates it. SYMPUT makes a macro variable
assignment when the program executes.
SYMPUT can be used in all SAS language programs, including SCL programs. Because
it resolves variables at program execution instead of macro execution, SYMPUT should
be used to assign macro values from DATA step views, SQL views, and SCL programs.
Scope of Variables Created with SYMPUT
SYMPUT puts the macro variable in the most local nonempty symbol table. A symbol
table is nonempty if it contains the following:
a value
a computed %GOTO (A computed %GOTO contains %or & and resolves to a label.)
However, there are three cases where SYMPUT creates the variable in the local symbol
table, even if that symbol table is empty:
Beginning with Version 8, if SYMPUT is used after a PROC SQL, the variable will
be created in a local symbol table.
For more information about creating a variable with SYMPUT, see Scopes of Macro
Variables on page 43.
Problem Trying to Reference a SYMPUT-Assigned Value Before It Is Available
One of the most common problems in using SYMPUT is trying to reference a macro
variable value assigned by SYMPUT before that variable is created. The failure
generally occurs because the statement referencing the macro variable compiles before
execution of the CALL SYMPUT statement that assigns the variable's value. The most
important fact to remember in using SYMPUT is that it assigns the value of the macro
variable during program execution. Macro variable references resolve during the
compilation of a step, a global statement used outside a step, or an SCL program. As a
result:
You cannot use a macro variable reference to retrieve the value of a macro variable
in the same program (or step) in which SYMPUT creates that macro variable and
assigns it a value.
You must specify a step boundary statement to force the DATA step to execute
before referencing a value in a global statement following the program (for example,
a TITLE statement). The boundary could be a RUN statement or another DATA or
PROC statement. For example:
data x;
x='December';
call symput('var',x);
proc print;
title "Report for &var";
run;
227
If value is a character variable, SYMPUT writes it using the $w. format, where w is the
length of the variable. Therefore, a value shorter than the length of the program variable
is written with trailing blanks. For example, in the following DATA step the length of
variable C is 8 by default. Therefore, SYMPUT uses the $8. format and assigns the letter
x followed by seven trailing blanks as the value of CHAR1. To eliminate the blanks, use
the TRIM function as shown in the second SYMPUT statement.
data char1;
input c $;
call symput('char1',c);
call symput('char2',trim(c));
datalines;
x
;
run;
%put char1 = ***&char1***;
%put char2 = ***&char2***;
When this program executes, these lines are written to the SAS log:
char1 = ***x
char2 = ***x***
***
When this program executes, these lines are written to the SAS log:
num1 = ***
num2 = ***1
num3 = ***1***
1***
***
Comparisons
SYMPUT is available in DATA step and SCL programs, but SYMPUTN is available
only in SCL programs.
228
Chapter 15
When this program executes, this list of variables is written to the SAS log:
GLOBAL
GLOBAL
GLOBAL
GLOBAL
GLOBAL
GLOBAL
SCARPET 41000
SKITCHEN 46000
STV 48000
SGIFTS 27000
SBEDDING 59000
S_TOT 221000
Syntax
CALL SYMPUTN('macro-variable', value);
229
Required Arguments
macro-variable
is the name of a global macro variable with no ampersand note the single quotation
marks. Or, it is the name of an SCL variable that contains the name of a global macro
variable.
value
is the numeric value to assign, which can be a number or the name of a numeric SCL
variable.
Details
The SYMPUTN routine assigns a numeric value to a global SAS macro variable.
SYMPUTN assigns the value when the SCL program executes. You can also use
SYMPUTN to assign the value of a macro variable whose name is stored in an SCL
variable. For example, to assign the value of SCL variable UNITNUM to SCL variable
UNITVAR, which contains 'UNIT', submit the following:
call symputn(unitvar,unitnum)
Comparisons
Macro
CALL SYMPUTX Routine in SAS Functions and CALL Routines: Reference
Syntax
CALL SYMPUTX(macro-variable, value <,symbol-table> );
230
Chapter 15
231
Chapter 16
Dictionary
RESOLVE Function
Resolves the value of a text expression during DATA step execution.
Type:
Syntax
RESOLVE(argument)
Required Argument
argument
can be one of the following items:
a text expression enclosed in single quotation marks (to prevent the macro
processor from resolving the argument while the DATA step is being
constructed). When a macro variable value contains a macro variable reference,
RESOLVE attempts to resolve the reference. If argument references a
232
Chapter 16
the name of a DATA step variable whose value is a text expression. For example,
this example assigns the value of the text expression in the current value of the
DATA step variable ADDR1 to X:
addr1='&locate';
x=resolve(addr1);
a character expression that produces a text expression for resolution by the macro
facility. For example, this example uses the current value of the DATA step
variable STNUM in building the name of a macro:
x=resolve('%state'||left(stnum));
Details
The RESOLVE function returns a character value that is the maximum length of a
DATA step character variable unless you specifically assign the target variable a shorter
length. A returned value that is longer is truncated.
If RESOLVE cannot locate the macro variable or macro identified by the argument, it
returns the argument without resolution and the macro processor issues a warning
message.
You can create a macro variable with the SYMPUT routine and use RESOLVE to
resolve it in the same DATA step.
Comparisons
RESOLVE resolves the value of a text expression during execution of a DATA step
or SCL program. Whereas a macro variable reference resolves when a DATA step is
being constructed or an SCL program is being compiled. For this reason, the
resolved value of a macro variable reference is constant during execution of a DATA
step or SCL program. However, RESOLVE can return a different value for a text
expression in each iteration of the program.
SYMEXIST Function
233
%let event=Holiday;
%macro date;
New Year
%mend date;
data test;
length var1-var3 $ 15;
when='%date';
var1=resolve('&event'); /* macro variable reference */
var2=resolve('%date'); /* macro invocation */
var3=resolve(when);
/* DATA step variable with macro invocation */
put var1= var2= var3=;
run;
When this program executes, these lines are written to the SAS log:
VAR1=Holiday VAR2=New Year VAR3=New Year
NOTE: The data set WORK.TEST has 1 observations and 4 variables.
SYMEXIST Function
Returns an indication of the existence of a macro variable.
Type:
Syntax
SYMEXIST (argument)
Required Argument
argument
can be one of the following items:
the name of a macro variable within quotation marks but without an ampersand
the name of a DATA step character variable, specified with no quotation marks,
which contains a macro variable name
Details
The SYMEXIST function searches any enclosing local symbol tables and then the global
symbol table for the indicated macro variable. The SYMEX/IST function returns one of
the following values:
234
Chapter 16
In the previous example, executing the %TEST macro, which contains the SYMEXIST
function, writes the following output to the SAS log:
x EXISTS
y EXISTS
z does not EXIST
SYMGET Function
Returns the value of a macro variable to the DATA step during DATA step execution.
Type:
See:
Syntax
SYMGET(argument)
Required Argument
argument
can be one of the following items:
the name of a macro variable within quotation marks but without an ampersand.
When a macro variable value contains another macro variable reference,
SYMGET does not attempt to resolve the reference. If argument references a
nonexistent macro variable, SYMGET returns a missing value. This example
shows how to assign the value of the macro variable G to the DATA step
variable X.
x=symget('g');
the name of a DATA step character variable, specified with no quotation marks,
which contains names of one or more macro variables. If the value is not a valid
SAS name, or if the macro processor cannot find a macro variable of that name,
SAS writes a note to the log that the function has an illegal argument and sets the
resulting value to missing. For example, these statements assign the value stored
in the DATA step variable CODE, which contains a macro variable name, to the
DATA step variable KEY:
Each time the DATA step iterates, the value of CODE supplies the name of a
macro variable whose value is then assigned to KEY.
a character expression that constructs a macro variable name. For example, this
statement assigns the letter s and the number of the current iteration (using the
automatic DATA step variable _N_).
score=symget('s'||left(_n_));
Details
SYMGET returns a character value that is the maximum length of a DATA step
character variable. A returned value that is longer is truncated.
If SYMGET cannot locate the macro variable identified as the argument, it returns a
missing value, and the program issues a message for an illegal argument to a function.
SYMGET can be used in all SAS language programs, including SCL programs. Because
it resolves variables at program execution instead of macro execution, SYMGET should
be used to return macro values to DATA step views, SQL views, and SCL programs.
Comparisons
SYMGET returns values of macro variables during program execution, whereas the
SYMPUT function assigns values that are produced by a program to macro variables
during program execution.
SYMGET accepts fewer types of arguments than the RESOLVE function. SYMGET
resolves only a single macro variable. Using RESOLVE might result in the execution
of macros and further resolution of values.
SYMGET is available in all SAS programs, but SYMGETN is available only in SCL
programs.
236
Chapter 16
SYMGETN Function
In SAS Component Control Language (SCL) programs, returns the value of a global macro variable as a
numeric value.
Type:
See:
SCL function
SYMGET Function on page 234, CALL SYMPUT Routine on page 224, and
CALL SYMPUTN Routine on page 228
238
Chapter 16
Syntax
SCL-variable=SYMGETN('macro-variable');
Required Arguments
SCL variable
is the name of a numeric SCL variable to contain the value stored in macro-variable.
macro-variable
is the name of a global macro variable with no ampersand note the single quotation
marks. Or, the name of an SCL variable that contains the name of a global macro
variable.
Details
SYMGETN returns the value of a global macro variable as a numeric value and stores it
in the specified numeric SCL variable. You can also use SYMGETN to retrieve the
value of a macro variable whose name is stored in an SCL variable. For example, to
retrieve the value of SCL variable UNITVAR, whose value is 'UNIT', submit the
following code:
unitnum=symgetn(unitvar)
SYMGETN returns values when SCL programs execute. If SYMGETN cannot locate
macro-variable, it returns a missing value.
To return the value stored in a macro variable when an SCL program compiles, use a
macro variable reference in an assignment statement:
SCL variable=¯o-variable;
Note: It is inefficient to use SYMGETN to retrieve values that are not assigned with
SYMPUTN and values that are not numeric.
Comparisons
SYMGLOBL Function
Returns an indication as to whether a macro variable is global in scope to the DATA step during DATA step
execution.
Type:
SYMLOCAL Function
239
Syntax
SYMGLOBL (argument)
Required Argument
argument
can be one of the following items:
the name of a macro variable within quotation marks but without an ampersand
the name of a DATA step character variable, specified with no quotation marks,
that contains a macro variable name
Details
The SYMGLOBL function searches enclosing scopes for the indicated macro variable
and returns a value of 1 if the macro variable is found in the global symbol table,
otherwise it returns a 0. See Scopes of Macro Variables on page 43 for more
information about the global and local symbol tables and macro variable scopes.
GLOBAL";
"x is not GLOBAL";
GLOBAL";
"y is not GLOBAL";
GLOBAL";
"z is not GLOBAL";
In the previous example, executing the %TEST macro, which contains the SYMGLOBL
function, writes the following output to the SAS log:
x is GLOBAL
y is not GLOBAL
z is not GLOBAL
SYMLOCAL Function
Returns an indication as to whether a macro variable is local in scope to the DATA step during DATA step
execution.
Type:
240
Chapter 16
Syntax
SYMLOCAL (argument)
Required Argument
argument
can be one of the following items:
the name of a macro variable within quotation marks but without an ampersand
the name of a DATA step character variable, specified with no quotation marks,
that contains a macro variable name
Details
The SYMLOCAL function searches enclosing scopes for the indicated macro variable
and returns a value of 1 if the macro variable is found in a local symbol table, otherwise
it returns a 0. See Scopes of Macro Variables on page 43 for more information about
the global and local symbol tables and macro variable scopes.
LOCAL";
"x is not LOCAL";
LOCAL";
"y is not LOCAL";
LOCAL";
"z is not LOCAL";
In the previous example, executing the %TEST macro, which contains the SYMLOCAL
function, writes the following output to the SAS log:
x is not LOCAL
y is LOCAL
z is not LOCAL
241
Chapter 17
Macro Functions
Macro Functions
A macro language function processes one or more arguments and produces a result.
242
Chapter 17
Macro Functions
Dictionary
%BQUOTE and %NRBQUOTE Functions
Mask special characters and mnemonic operators in a resolved value at macro execution.
Type:
See:
Syntax
%BQUOTE (character string | text expression)
%NRBQUOTE (character string | text expression)
Details
The %BQUOTE and %NRBQUOTE functions mask a character string or resolved value
of a text expression during execution of a macro or macro language statement. They
mask the following special characters and mnemonic operators:
' " ( ) + * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
%NRBQUOTE is most useful when the resolved value of an argument might contain
strings that look like macro variable references but are not, so the macro processor
should not attempt to resolve them when it next encounters them.
macro invocations that you do not want the macro processor to attempt to resolve
when it next encounters them.
Note: The maximum level of nesting for the macro quoting functions is 10.
Tip: You can use %BQUOTE and %NRBQUOTE for all execution-time macro quoting
because they mask all characters and mnemonic operators that can be interpreted as
elements of macro language.
Quotation marks ('") do not have to be marked.
For a description of quoting in SAS macro language, see Macro Quoting on page 80.
Comparisons
%NRBQUOTE and the %SUPERQ function mask the same items. However,
%SUPERQ does not attempt to resolve a macro variable reference or a macro invocation
that occurs in the value of the specified macro variable. %NRBQUOTE does attempt to
resolve such references.%BQUOTE and %NRBQUOTE do not require that you mark
quotation marks.
%EVAL Function
243
%EVAL Function
Evaluates arithmetic and logical expressions using integer arithmetic.
Type:
See:
Syntax
%EVAL (arithmetic or logical expression)
Details
The %EVAL function evaluates integer arithmetic or logical expressions. %EVAL
operates by converting its argument from a character value to a numeric or logical
expression. Then, it performs the evaluation. Finally, %EVAL converts the result back
to a character value and returns that value.
If all operands can be interpreted as integers, the expression is treated as arithmetic. If at
least one operand cannot be interpreted as numeric, the expression is treated as logical. If
a division operation results in a fraction, the fraction is truncated to an integer.
Logical, or Boolean, expressions return a value that is evaluated as true or false. In the
macro language, any numeric value other than 0 is true and a value of 0 is false.
%EVAL accepts only operands in arithmetic expressions that represent integers (in
standard or hexadecimal form). Operands that contain a period character cause an error
when they are part of an integer arithmetic expression. The following examples show
correct and incorrect usage, respectively:
244
Chapter 17
Macro Functions
%let d=%eval(10+20);
%let d=%eval(10.0+20.0);
/* Correct usage
*/
/* Incorrect usage */
Because %EVAL does not convert a value containing a period to a number, the operands
are evaluated as character operands. When %EVAL encounters a value containing a
period, it displays an error message about finding a character operand where a numeric
operand is required.
An expression that compares character values in the %EVAL function uses the sort
sequence of the operating environment for the comparison. Refer to The SORT
PROCEDURE in the Base SAS Procedures Guide for more information about operating
environment sort sequences.
All parts of the macro language that evaluate expressions (for example, %IF and %DO
statements) call %EVAL to evaluate the condition. For a complete discussion of how
macro expressions are evaluated, see Macro Expressions on page 71.
Comparisons
%EVAL performs integer evaluations, but %SYSEVALF performs floating point
evaluations.
Examples
Example 1: Illustrating Integer Arithmetic Evaluation
These statements illustrate different types of evaluations:
%let
%let
%let
%let
%let
%let
%put
%put
%put
a=1+2;
b=10*3;
c=5/3;
eval_a=%eval(&a);
eval_b=%eval(&b);
eval_c=%eval(&c);
&a is &eval_a;
&b is &eval_b;
&c is &eval_c;
When these statements are submitted, the following is written to the SAS log:
1+2 is 3
10*3 is 30
5/3 is 1
The third %PUT statement shows that %EVAL discards the fractional part when it
performs division on integers that would result in a fraction:
%INDEX Function
245
%mend test;
%test(5)
When this program executes, these lines are written to the SAS log:
The
The
The
The
value
value
value
value
of
of
of
of
i
i
i
i
is
is
is
is
1
2
3
4
When this program executes, these lines are written to the SAS log:
1 < 2
-1 < 0
%INDEX Function
Returns the position of the first character of a string.
Type:
Macro function
Syntax
%INDEX (source, string)
Required Arguments
source
is a character string or text expression.
string
is a character string or text expression.
Details
The %INDEX function searches source for the first occurrence of string and returns the
position of its first character. If string is not found, the function returns 0.
246
Chapter 17
Macro Functions
When these statements execute, the following line is written to the SAS log:
V appears at position 3.
%LENGTH Function
Returns the length of a string.
Type:
Macro function
Syntax
%LENGTH (character string | text expression)
Details
If the argument is a character string, %LENGTH returns the length of the string. If the
argument is a text expression, %LENGTH returns the length of the resolved value. If the
argument has a null value, %LENGTH returns 0.
a=Happy;
b=Birthday;
The length of &a is %length(&a).;
The length of &b is %length(&b).;
The length of &a &b To You is %length(&a &b to you).;
When these statements execute, the following is written to the SAS log:
The length of Happy is 5.
The length of Birthday is 8.
The length of Happy Birthday To You is 21.
%NRBQUOTE Function
Masks special characters, including & and %, and mnemonic operators in a resolved value at macro
execution.
Type:
See:
Syntax
%NRBQUOTE (character string | text expression)
Without Arguments
Note that the maximum level of nesting for the macro quoting functions is 10.
%QSCAN Function
%NRQUOTE Function
Masks special characters, including & and %, and mnemonic operators in a resolved value at macro
execution.
Type:
See:
Syntax
%NRQUOTE (character string | text expression)
Without Arguments
Note that the maximum level of nesting for the macro quoting functions is 10.
%NRSTR Function
Masks special characters, including & and %, and mnemonic operators in constant text during macro
compilation.
Type:
See:
Syntax
%NRSTR (character-string)
Without Arguments
Note that the maximum level of nesting for the macro quoting functions is 10.
%QSCAN Function
Searches for a word and masks special characters and mnemonic operators.
Type:
Macro function
Syntax
%QSCAN (argument,n<,charlist<,modifiers>> )
Without Arguments
%SCAN and %QSCAN Functions on page 250
247
248
Chapter 17
Macro Functions
%QSUBSTR Function
Produces a substring and masks special characters and mnemonic operators.
Type:
Macro function
Syntax
%QSUBSTR (argument, position<, length> )
Without Arguments
See %SUBSTR and %QSUBSTR Functions on page 257
%QSYSFUNC Function
Executes functions and masks special characters and mnemonic operators.
Type:
Macro function
Syntax
%QSYSFUNC (function(argument-1 <...argument-n>)<, format> )
Without Arguments
See%SYSFUNC and %QSYSFUNC Functions on page 268
Syntax
%QUOTE (character string | text expression)
%NRQUOTE (character string | text expression)
Details
The %QUOTE and %NRQUOTE functions mask a character string or resolved value of
a text expression during execution of a macro or macro language statement. They mask
the following special characters and mnemonic operators:
+ * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
They also mask the following characters when they occur in pairs and when they are not
matched and are marked by a preceding %
' "
Comparisons
%QUOTE and %NRQUOTE mask the same items as %STR and %NRSTR,
respectively. However, %STR and %NRSTR mask constant text instead of a
resolved value. And, %STR and %NRSTR work when a macro compiles, while
%QUOTE and %NRQUOTE work when a macro executes.
The %BQUOTE and %NRBQUOTE functions do not require that quotation marks
without a match be marked with a preceding %, while %QUOTE and %NRQUOTE
do.
%QUOTE and %NRQUOTE mask resolved values, while the %SUPERQ function
prevents resolution of any macro invocations or macro variable references that might
occur in a value.
When the macro DEPT1 executes, the %IF condition executes a %EVAL function,
which evaluates or as a logical operator in this expression. Then the macro processor
produces an error message for an invalid operand in the expression or=nc.
The macro DEPT2 uses the %QUOTE function to treat characters that result from
resolving &STATE as text:
%macro dept2(state);
/* with %quote function--problems are prevented */
%if %quote(&state)=nc %then
%put North Carolina Department of Revenue;
%else %put Department of Revenue;
%mend dept2;
%dept2(or)
The %IF condition now compares the strings or and nc and writes to the SAS log:
250
Chapter 17
Macro Functions
Department of Revenue
%QUPCASE Function
Converts a value to uppercase and returns a result that masks special characters and mnemonic
operators.
Type:
Macro function
Syntax
%QUPCASE (character string | text expression)
Without Arguments
See %UPCASE and %QUPCASE Functions on page 275
Macro function
%NRBQUOTE Function on page 246 and %STR and %NRSTR Functions on
page 254
Syntax
%SCAN(argument, n<,charlist<,modifiers>> )
%QSCAN(argument, n<,charlist<,modifiers>> )
Required Arguments
argument
is a character string or a text expression. If argument might contain a special
character or mnemonic operator, listed below, use %QSCAN. If argument contains a
comma, enclose argument in a quoting function such as %BQUOTE(argument).
n
is an integer or a text expression that yields an integer, which specifies the position
of the word to return. (An implied %EVAL gives n numeric properties.) If n is
greater than the number of words in argument, the functions return a null string.
Note: When you are using Version 8 or greater, if n is negative, %SCAN examines
the character string and selects the word that starts at the end of the string and
searches backward.
charlist
specifies an optional character expression that initializes a list of characters. This list
determines which characters are used as the delimiters that separate words. The
following rules apply:
251
If you specify the K modifier in the modifier argument, then all characters that
are not in charlist are used as delimiters.
Tip: You can add more characters to charlist by using other modifiers.
modifier
specifies a character constant, a variable, or an expression in which each non-blank
character modifies the action of the %SCAN function. Blanks are ignored. You can
use the following characters as modifiers:
a or A
b or B
c or C
d or D
f or F
adds an underscore and English letters (that is, valid first characters in
a SAS variable name using VALIDVARNAME=V7) to the list of
characters.
g or G
h or H
i or I
k or K
causes all characters that are not in the list of characters to be treated
as delimiters. That is, if K is specified, then characters that are in the
list of characters are kept in the returned value rather than being
omitted because they are delimiters. If K is not specified, then all
characters that are in the list of characters are treated as delimiters.
l or L
m or M
n or N
adds digits, an underscore, and English letters (that is, the characters
that can appear in a SAS variable name using
VALIDVARNAME=V7) to the list of characters.
o or O
processes the charlist and modifier arguments only once, rather than
every time the %SCAN function is called. Using the O modifier in the
DATA step (excluding WHERE clauses), or in the SQL procedure
can make %SCAN run faster when you call it in a loop where the
charlist and modifier arguments do not change. The O modifier
applies separately to each instance of the %SCAN function in your
SAS code, and does not cause all instances of the %SCAN function to
use the same delimiters and modifiers.
p or P
q or Q
252
Chapter 17
Macro Functions
r or R
removes leading and trailing blanks from the word that %SCAN
returns. If you specify both the Q and R modifiers, then the %SCAN
function first removes leading and trailing blanks from the word.
Then, if the word begins with a quotation mark, %SCAN also
removes one layer of quotation marks from the word.
s or S
t or T
trims trailing blanks from the string and charlist arguments. If you
want to remove trailing blanks from only one character argument
instead of both character arguments, then use the TRIM function
instead of the %SCAN function with the T modifier.
u or U
w or W
x or X
Details
The %SCAN and %QSCAN functions search argument and return the nth word. A word
is one or more characters separated by one or more delimiters.
%SCAN does not mask special characters or mnemonic operators in its result, even
when the argument was previously masked by a macro quoting function. %QSCAN
masks the following special characters and mnemonic operators in its result:
& % ' " ( ) + * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
contains no delimiters
A word can have a length of zero if there are delimiters at the beginning or end of the
string, or if the string contains two or more consecutive delimiters. However, the
%SCAN function ignores words that have a length of zero unless you specify the M
modifier.
Using Default Delimiters in ASCII and EBCDIC Environments
If you use the %SCAN function with only two arguments, then the default delimiters
depend on whether your computer uses ASCII or EBCDIC characters.
If your computer uses ASCII characters, then the default delimiters are as follows:
253
If your computer uses EBCDIC characters, then the default delimiters are as follows:
blank ! $ % & ( ) * + , - . / ; < |
If you use the modifier argument without specifying any characters as delimiters, then
the only delimiters that will be used are delimiters that are defined by the modifier
argument. In this case, the lists of default delimiters for ASCII and EBCDIC
environments are not used. In other words, modifiers add to the list of delimiters that are
specified by the charlist argument. Modifiers do not add to the list of default modifiers.
Using the %SCAN Function with the M Modifier
If you specify the M modifier, then the number of words in a string is defined as one
plus the number of delimiters in the string. However, if you specify the Q modifier,
delimiters that are inside quotation marks are ignored.
If you specify the M modifier, then the %SCAN function returns a word with a length of
zero if one of the following conditions is true:
The string begins with a delimiter and you request the first word.
The string ends with a delimiter and you request the last word.
The string contains two consecutive delimiters and you request the word that is
between the two delimiters.
If the string contains no characters other than delimiters, or if you specify a count that is
greater in absolute value than the number of words in the string, then the %SCAN
function returns one of the following:
a single blank when you call the %SCAN function from a DATA step
a string with a length of zero when you call the %SCAN function from the macro
processor
Comparisons
%QSCAN masks the same characters as the %NRBQUOTE function.
254
Chapter 17
Macro Functions
%macro a;
aaaaaa
%mend a;
%macro b;
bbbbbb
%mend b;
%macro c;
cccccc
%mend c;
%let x=%nrstr(%a*%b*%c);
%put X: &x;
%put The third word in X, with SCAN: %scan(&x,3,*);
%put The third word in X, with QSCAN: %qscan(&x,3,*);
Syntax
%STR (character-string)
%NRSTR (character-string)
Details
The %STR and %NRSTR functions mask a character string during compilation of a
macro or macro language statement. They mask the following special characters and
mnemonic operators:
+ * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
They also mask the following characters when they occur in pairs and when they are not
matched and are marked by a preceding %
' " ( )
255
Argument
Use
a semicolon that should be treated as text rather than as part of a macro program
statement
Putting the same argument within nested %STR and %QUOTE functions is redundant.
This example shows an argument that is masked at macro compilation by the %STR
function and so remains masked at macro execution. Thus, in this example, the
%QUOTE function used here has no effect.
%quote(%str(argument))
CAUTION:
Do not use %STR to enclose other macro functions or macro invocations that
have a list of parameter values. Because %STR masks parentheses without a
match, the macro processor does not recognize the arguments of a function or the
parameter values of a macro invocation.
For a description of quoting in SAS macro language, see Macro Quoting on page 80.
Note: The maximum level of nesting for macro quoting functions is 10.
Comparisons
Of all the macro quoting functions, only %NRSTR and %STR take effect during
compilation. The other macro quoting functions take effect when a macro executes.
%STR and %NRSTR mask the same items as %QUOTE and %NRQUOTE.
However, %QUOTE and %NRQUOTE work during macro execution.
If resolution of a macro expression produces items that need to be masked, use the
%BQUOTE or %NRBQUOTE function instead of the %STR or %NRSTR function.
Examples
Example 1: Maintaining Leading Blanks
This example enables the value of the macro variable TIME to contain leading blanks.
256
Chapter 17
Macro Functions
%let time=%str(
now);
%put Text followed by the value of time:&time;
When this example is executed, these lines are written to the SAS log:
Text followed by the value of time:
now
When this program executes, these lines are written to the SAS log:
The string contains 6 words.
When this program executes, the following lines are written to the SAS log:
1
2
3
4
5
6
7
8
9
10
11
12
%test%test
%macro revrs(string);
%local nstring;
%do i=%length(&string) %to 1 %by -1;
%let nstring=&nstring%qsubstr(&string,&i,1);
%end;&nstring
%mend revrs;
%macro test;
Two words
%mend test;
%put %nrstr(%test%test) - %revrs(%test%test);
- sdrow owTsdrow owT
257
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
real time
0.28 seconds
cpu time
0.12 seconds
Macro function
%NRBQUOTE Function on page 246
Syntax
%SUBSTR (argument, position<, length> )
%QSUBSTR (argument, position<, length> )
Required Arguments
argument
is a character string or a text expression. If argument might contain a special
character or mnemonic operator, listed below, use %QSUBSTR.
position
is an integer or an expression (text, logical, or arithmetic) that yields an integer,
which specifies the position of the first character in the substring. If position is
greater than the number of characters in the string, %SUBSTR and %QSUBSTR
issue a warning message and return a null value. An automatic call to %EVAL
causes n to be treated as a numeric value.
length
is an optional integer or an expression (text, logical, or arithmetic) that yields an
integer that specifies the number of characters in the substring. If length is greater
than the number of characters following position in argument, %SUBSTR and
%QSUBSTR issue a warning message and return a substring containing the
characters from position to the end of the string. By default, %SUBSTR and
%QSUBSTR produce a string containing the characters from position to the end of
the character string.
Details
The %SUBSTR and %QSUBSTR functions produce a substring of argument, beginning
at position, for length number of characters.
%SUBSTR does not mask special characters or mnemonic operators in its result, even
when the argument was previously masked by a macro quoting function. %QSUBSTR
masks the following special characters and mnemonic operators:
& % ' " ( ) + * / < > = ^ ~ ; , #
AND OR NOT EQ NE LE LT GE GT IN
blank
Comparisons
%QSUBSTR masks the same characters as the %NRBQUOTE function.
258
Chapter 17
Macro Functions
Examples
Example 1: Limiting a Fileref to Eight Characters
The macro MAKEFREF uses %SUBSTR to assign the first eight characters of a
parameter as a fileref, in case a user assigns one that is longer.
%macro makefref(fileref,file);
%if %length(&fileref) gt 8 %then
%let fileref = %substr(&fileref,1,8);
filename &fileref "&file";
%mend makefref;
%makefref(humanresource,/dept/humanresource/report96)
When this program executes, these lines are written to the SAS log:
Message
Message
Message
Message
Message
Message
1
2
3
4
5
6
is:
is:
is:
is:
is:
is:
%SUPERQ Function
%let
%let
%let
%put
%put
%put
259
a=one;
b=two;
c=%nrstr(&a &b);
C: &c;
With SUBSTR: %substr(&c,1,2);
With QSUBSTR: %qsubstr(&c,1,2);
When these statements execute, these lines are written to the SAS log:
C: &a &b
With SUBSTR: one
With QSUBSTR: &a
%SUPERQ Function
Masks all special characters and mnemonic operators at macro execution but prevents further resolution of
the value.
Type:
See:
Syntax
%SUPERQ (argument)
Required Argument
argument
is the name of a macro variable with no leading ampersand or a text expression that
produces the name of a macro variable with no leading ampersand.
Details
The %SUPERQ function returns the value of a macro variable without attempting to
resolve any macros or macro variable references in the value. %SUPERQ masks the
following special characters and mnemonic operators:
& % ' " ( ) + * / < > = ^ ~ ; , #
AND OR NOT EQ NE LE LT GE GT IN
blank
%SUPERQ is particularly useful for masking macro variables that might contain an
ampersand or a percent sign when they are used with the %INPUT or %WINDOW
statement, or the SYMPUT routine.
For a description of quoting in SAS macro language, see Macro Quoting on page 80.
Note: The maximum level of nesting for the macro quoting functions is 10.
Comparisons
%SUPERQ is the only quoting function that prevents the resolution of macro
variables and macro references in the value of the specified macro variable.
%SUPERQ accepts only the name of a macro variable as its argument, without an
ampersand, while the other quoting functions accept any text expression, including
constant text, as an argument.
260
Chapter 17
Macro Functions
When this program executes, these lines are written to the SAS log:
Macro variable TESTMV1 is Smith&Jones
Macro variable TESTMV2 is %macro abc;
You might think of the values of TESTMV1 and TESTMV2 as pictures of the original
values of MV1 and MV2. The %PUT statement then writes the pictures in its text. The
macro processor does not attempt resolution. It does not issue a warning message for the
unresolved reference &JONES or an error message for beginning a macro definition
inside a %LET statement.
%SYMEXIST Function
Returns an indication of the existence of a macro variable.
Type:
Macro function
Syntax
%SYMEXIST(macro-variable-name)
Required Argument
macro-variable-name
is the name of a macro variable or a text expression that yields the name of a macro
variable.
Details
The %SYMEXIST function searches any enclosing local symbol tables and then the
global symbol table for the indicated macro variable and returns one of the following
values:
%SYMGLOBL Function
261
%put
%put
%put
%put
%put
%put
%nrstr(%symexist(x))
%nrstr(%symexist(x))
%nrstr(%symexist(y))
%nrstr(%symexist(y))
%nrstr(%symexist(z))
%nrstr(%symexist(z))
=
=
=
=
=
=
TRUE;
FALSE;
TRUE;
FALSE;
TRUE;
FALSE;
In the previous example, executing the %TEST macro writes the following output to the
SAS log:
%symexist(x) = TRUE
%symexist(y) = TRUE
%symexist(z) = FALSE
%SYMGLOBL Function
Returns an indication as to whether a macro variable is global in scope.
Type:
Macro function
Syntax
%SYMGLOBL(macro-variable-name)
Required Argument
macro-variable-name
is a name of a macro variable or a text expression that yields the name of a macro
variable.
Details
The %SYMGLOBL function searches enclosing scopes for the indicated macro variable
and returns a value of 1 if the macro variable is found in the global symbol table,
otherwise it returns a 0. See Scopes of Macro Variables on page 43 for more
information about the global and local symbol tables and macro variable scopes.
262
Chapter 17
Macro Functions
%global x;
%macro test;
%local y;
%if %symglobl(x) %then
%else
%if %symglobl(y) %then
%else
%if %symglobl(z) %then
%else
%mend test;
%test;
%put
%put
%put
%put
%put
%put
%nrstr(%symglobl(x))
%nrstr(%symglobl(x))
%nrstr(%symglobl(y))
%nrstr(%symglobl(y))
%nrstr(%symglobl(z))
%nrstr(%symglobl(z))
=
=
=
=
=
=
TRUE;
FALSE;
TRUE;
FALSE;
TRUE;
FALSE;
In the example above, executing the %TEST macro writes the following output to the
SAS log:
%symglobl(x) = TRUE
%symglobl(y) = FALSE
%symglobl(z) = FALSE
%SYMLOCAL Function
Returns an indication as to whether a macro variable is local in scope.
Type:
Macro function
Syntax
%SYMLOCAL(macro-variable-name)
Required Argument
macro-variable-name
is the name of a macro variable or a text expression that yields the name of a macro
variable.
Details
The %SYMLOCAL searches enclosing scopes for the indicated macro variable and
returns a value of 1 if the macro variable is found in a local symbol table, otherwise it
returns a 0. See Scopes of Macro Variables on page 43 for more information about the
global and local symbol tables and macro variable scopes.
%SYSEVALF Function
263
In the example above, executing the %TEST macro writes the following output to the
SAS log:
%symlocal(x) = FALSE
%symlocal(y) = TRUE
%symlocal(z) = FALSE
%SYSEVALF Function
Evaluates arithmetic and logical expressions using floating-point arithmetic.
Type:
See:
Macro function
%EVAL Function on page 243
Syntax
%SYSEVALF(expression<, conversion-type> )
Required Arguments
expression
is an arithmetic or logical expression to evaluate.
conversion-type
converts the value returned by %SYSEVALF to the type of value specified. The
value can then be used in other expressions that require a value of that type.
Conversion-type can be one of the following:
BOOLEAN
returns
Here is an example:
%sysevalf(1/3,boolean)
%sysevalf(10+.,boolean)
/* returns 1 */
/* returns 0 */
CEIL
returns a character value representing the smallest integer that is greater than or
equal to the result of the expression. If the result is within 1012 of an integer, the
function returns a character value representing that integer. An expression
containing a missing value returns a missing value along with a message noting
that fact:
%sysevalf(1 + 1.1,ceil)
%sysevalf(-1 -2.4,ceil)
/* returns 3 */
/* returns 3 */
264
Chapter 17
Macro Functions
%sysevalf(-1 + 1.e-11,ceil)
%sysevalf(10+.)
/* returns
/* returns
0 */
. */
FLOOR
returns a character value representing the largest integer that is less than or equal
to the result of the expression. If the result is within 1012 of an integer, the
function returns that integer. An expression with a missing value produces a
missing value:
%sysevalf(-2.4,floor)
%sysevalf(3,floor)
%sysevalf(1.-1.e-13,floor)
%sysevalf(.,floor)
/*
/*
/*
/*
returns 3 */
returns 3 */
returns 1 */
returns . */
INTEGER
returns a character value representing the integer portion of the result (truncates
the decimal portion). If the result of the expression is within 1012 of an integer,
the function produces a character value representing that integer. If the result of
the expression is positive, INTEGER returns the same result as FLOOR. If the
result of the expression is negative, INTEGER returns the same result as CEIL.
An expression with a missing value produces a missing value:
%put
%put
%put
%put
%put
%sysevalf(2.1,integer);
%sysevalf(-2.4,integer);
%sysevalf(3,integer);
%sysevalf(-1.6,integer);
%sysevalf(1.-1.e-13,integer);
/*
/*
/*
/*
/*
returns 2 */
returns 2 */
returns 3 */
returns 1 */
returns 1 */
Details
The %SYSEVALF function performs floating-point arithmetic and returns a value that is
formatted using the BEST32. format. The result of the evaluation is always text.
%SYSEVALF is the only macro function that can evaluate logical expressions that
contain floating-point or missing values. Specify a conversion type to prevent problems
when %SYSEVALF returns one of the following:
macro variables that are used in other macro expressions that require an integer value
Comparisons
You must use the %SYSEVALF macro function in macros to evaluate floating-point
expressions. However, %EVAL is used automatically by the macro processor to
evaluate macro expressions.
%SYSMACEXIST Function
265
When this program executes, these lines are written to the SAS log:
The
The
The
The
The
%SYSMACEXEC Function
Returns an indication of the execution status of a macro.
Type:
Macro function
Syntax
%SYSMACEXEC(macro_name)
Required Argument
macro_name
the name of a macro or a text expression that yields the name of the macro.
Details
The %SYSMACEXEC function returns the number 1 if the macro is currently
executing. Otherwise, if the macro is not executing, the number 0 is returned.
%SYSMACEXIST Function
Returns an indication of the existence of a macro definition in the WORK.SASMACR catalog. Otherwise,
the returned value is 0.
Type:
Macro function
Syntax
%SYSMACEXIST(macro-name)
Required Argument
macro-name
the name of a macro or a text expression that yields the name of a macro.
266
Chapter 17
Macro Functions
Details
The %SYSMACEXIST function returns the number 1 if a definition for the macro exists
in the WORK.SASMACR catalog. If there is not a macro definition, the returned value
is 0.
%SYSMEXECDEPTH Function
Returns the nesting depth of macro execution from the point of the call to %SYSMEXECDEPTH.
Type:
Macro Function
Tip:
See:
%SYSMEXECNAME Function
Syntax
%SYSMEXECDEPTH
Details
To retrieve the nesting level of the currently executing macro, use the
%SYSMEXECDEPTH. This function returns a number indicating the depth of the
macro in nested macro calls. The following are the %SYSMEXECDEPTH return value
descriptions:
0
open code
>0
nesting level
%macro A;
%put %sysmexecdepth;
%mend A;
/* The macro execution depth
of a macro called from open code */
%A;
/* is one */
%macro B;
%put %nrstr(%%)sysmexecdepth=%sysmexecdepth;
%put %nrstr(%%)sysmexecname(1)=%sysmexecname(1);
%put %nrstr(%%)sysmexecname(2)=%sysmexecname(2);
%put %nrstr(%%)sysmexecname(0)=%sysmexecname(0);
%put %nrstr(%%)sysmexecname(%nrstr(%%)sysmexecdepth-1)=
%sysmexecname(%sysmexecdepth-1);
%mend B;
19
20
21
%macro C;
22
%B;
23
%mend;
24
%C;
%sysmexecdepth=2
%sysmexecname(1)=C
%SYSMEXECNAME Function
267
%sysmexecname(2)=B
%sysmexecname(0)=OPEN CODE
%sysmexecname(%sysmexecdepth-1)=C
25
26
%macro level1;
27
%level2;
28
%mend;
29
%macro level2;
30
%level3;
31
%mend;
32
%macro level3;
33
%level4;
34
%mend;
35
%macro level4;
36
%do i = %sysmexecdepth+1 %to -1 %by -1;
37
%put %nrstr(%%)sysmexecname(&i)=%sysmexecname(&i);
38
%end;
39
%mend;
40
41
%level1;
WARNING: Argument 1 to %SYSMEXECNAME function is out of range.
%sysmexecname(5)=
%sysmexecname(4)=LEVEL4
%sysmexecname(3)=LEVEL3
%sysmexecname(2)=LEVEL2
%sysmexecname(1)=LEVEL1
%sysmexecname(0)=OPEN CODE
WARNING: Argument 1 to %SYSMEXECNAME function is out of range.
%sysmexecname(-1)=
42
If the macro C wanted to know the name of the macro that had called it, it could call
%SYSMEXECNAME with %SYSMEXECNAME(%SYSMEXECDEPTH-1 (the value of
the n argument being %SYSMEXECDEPTH, its own nesting level, minus one). That
call to %SYSMEXECNAME would return the value B.
%SYSMEXECNAME Function
Returns the name of the macro executing at a requested nesting level.
Type:
Macro Function
Tip:
See:
%SYSMEXECDEPTH function
Syntax
%SYSMEXECNAME (n)
268
Chapter 17
Macro Functions
Required Argument
n
The nesting level at which you are requesting the macro name.
0
open code
>0
nesting level
Details
The %SYSMEXECNAME function returns the name of the macro executing at the n
nesting level. The following three scenarios are shown in the example below.
If n<0, a null string is returned and a WARNING diagnostic message is issued to the
SAS log.
0
4
%put %sysmexecname(%sysmexecdepth);
OPEN CODE
5
%put %sysmexecname(%sysmexecdepth + 1);
WARNING: Argument 1 to %SYSMEXECNAME function is out of range.
6
%put %sysmexecname(%sysmexecdepth - 1);
WARNING: Argument 1 to %SYSMEXECNAME function is out of range.
Macro function
%SYSFUNC and %QSYSFUNC support SAS function names up to 32 characters.
Syntax
%SYSFUNC (function(argument-1 <...argument-n>)<, format> )
%QSYSFUNC (function(argument-1 <...argument-n>)<, format> )
Required Arguments
function
is the name of the function to execute. This function can be a SAS function, a
function written with SAS/TOOLKIT software, or a function created using the
Chapter 18, FCMP Procedure in Base SAS Procedures Guide. The function cannot
be a macro function.
All SAS functions, except those listed in Table 17.2 on page 269, can be used with
%SYSFUNC and %QSYSFUNC.
269
You cannot nest functions to be used with a single %SYSFUNC. However, you can
nest %SYSFUNC calls:
%let x=%sysfunc(trim(%sysfunc(left(&num))));
Syntax for Selected Functions Used with the %SYSFUNC Function on page 367
shows the syntax of SAS functions used with %SYSFUNC that were introduced with
SAS 6.12.
argument-1 <...argument-n>
is one or more arguments used by function. An argument can be a macro variable
reference or a text expression that produces arguments for a function. If argument
might contain a special character or mnemonic operator, listed below, use
%QSYSFUNC.
format
is an optional format to apply to the result of function. This format can be provided
by SAS, generated by PROC FORMAT, or created with SAS/TOOLKIT. There is no
default value for format. If you do not specify a format, the SAS macro facility does
not perform a format operation on the result and uses the default of the function.
Details
Because %SYSFUNC is a macro function, you do not need to enclose character values
in quotation marks as you do in DATA step functions. For example, the arguments to the
OPEN function are enclosed in quotation marks when the function is used alone, but do
not require quotation marks when used within %SYSFUNC. These statements show the
difference:
dsid=open("sasuser.houses","i");
dsid=open("&mydata","&mode");
%let dsid=%sysfunc(open(&mydata,&mode));
blank
ALLCOMB
ALLPERM
270
Chapter 17
Macro Functions
DIF
DIM
HBOUND
IORCMSG
INPUT
LAG
LBOUND
LEXCOMB
LEXCOMBI
LEXPERK
LEXPERM
MISSING
PUT
RESOLVE
SYMGET
Note: Instead of INPUT and PUT, which are not available with %SYSFUNC and
%QSYSFUNC, use INPUTN, INPUTC, PUTN, and PUTC.
Note: The Variable Information functions include functions such as VNAME and
VLABEL. For a complete list, see Definitions of Functions and CALL Routines in
SAS Functions and CALL Routines: Reference.
CAUTION:
Values returned by SAS functions might be truncated. Although values returned
by macro functions are not limited to the length imposed by the DATA step, values
returned by SAS functions do have that limitation.
Comparisons
%QSYSFUNC masks the same characters as the %NRBQUOTE function.
Examples
Example 1: Formatting the Current Date in a TITLE Statement
This example formats a TITLE statement containing the current date using the DATE
function and the WORDDATE. format:
title "%sysfunc(date(),worddate.) Absence Report";
When the program is executed on July 18, 2008, the statement produces the following
TITLE statement:
title "July 18, 2008 Absence Report"
271
%try(1.02)
%try(.)
%try(-.38)
When these statements are executed, these lines are written to the SAS log:
1.02 is Greater Than Zero
. is Missing
-.38 is Less Than Zero
When these statements are executed, these lines are written to the SAS log:
With N translated to P, V01N01-V01N10 is V01P01-V01P10
272
Chapter 17
Macro Functions
%end;
%else
%put Open for data set &dset failed - %sysfunc(sysmsg());
%mend obsnvars;
%obsnvars(sasuser.houses)
When the program is executed, the following message will appear in the SAS log:
sasuser.houses has 6 variable(s) and 15 observation(s).
%SYSGET Function
Returns the value of the specified operating environment variable.
Type:
Macro function
Syntax
%SYSGET(environment-variable)
Required Argument
environment-variable
is the name of an environment variable. The case of environment-variable must
agree with the case that is stored on the operating environment.
Details
The %SYSGET function returns the value as a character string. If the value is truncated
or the variable is not defined on the operating environment, %SYSGET displays a
warning message in the SAS log.
You can use the value returned by %SYSGET as a condition for determining further
action to take or parts of a SAS program to execute. For example, your program can
restrict certain processing or issue commands that are specific to a user.
For details, see the SAS documentation for your operating environment.
When these statements execute for user ABCDEF, the following is written to the SAS
log:
User is abcdef
%SYSPROD Function
Reports whether a SAS software product is licensed at the site.
%SYSPROD Function
Type:
See:
273
Macro function
%SYSEXEC Statement on page 316, SYSSCP and SYSSCPL Automatic Macro
Variables on page 212, and SYSVER Automatic Macro Variable on page 218
Syntax
%SYSPROD (product)
Required Argument
product
can be a character string or text expression that yields a code for a SAS product. The
following are commonly used codes:
Table 17.3
AF
CPE
GRAPH
PH-CLINICAL
ASSIST
EIS
IML
QC
BASE
ETS
INSIGHT
SHARE
CALC
FSP
LAB
STAT
CONNECT
GIS
OR
TOOLKIT
For codes for other SAS software products, see your on-site SAS support personnel.
Details
%SYSPROD can return the following values:
Table 17.4
Value
Description
The product is not Institute software (for example, if the product code is
misspelled).
274
Chapter 17
Macro Functions
%macro runplot(ds);
%if %sysprod(graph)=1 %then
%do;
title "GPLOT of %upcase(&ds)";
proc gplot data=&ds;
plot style*price / haxis=0 to 150000 by 50000;
run;
quit;
%end;
%else
%do;
title "PLOT of %upcase(&ds)";
proc plot data=&ds;
plot style*price;
run;
quit;
%end;
%mend runplot;
%runplot(sasuser.houses)
When this program executes and SAS/GRAPH is installed, the following statements are
generated:
TITLE "GPLOT of SASUSER.HOUSES";
PROC GPLOT DATA=SASUSER.HOUSES;
PLOT STYLE*PRICE / HAXIS=0 TO 150000 BY 50000;
RUN;
%UNQUOTE Function
During macro execution, unmasks all special characters and mnemonic operators for a value.
Type:
See:
Macro function
%BQUOTE and %NRBQUOTE Functions on page 242, %NRBQUOTE Function
on page 246, %NRQUOTE Function on page 247, %NRSTR Function on page
247, %QUOTE and %NRQUOTE Functions on page 248, %STR and %NRSTR
Functions on page 254, and %SUPERQ Function on page 259
Syntax
%UNQUOTE (character string | text expression)
Details
The %UNQUOTE function unmasks a value so that special characters that it might
contain are interpreted as macro language elements instead of as text. The most
important effect of %UNQUOTE is to restore normal tokenization of a value whose
tokenization was altered by a previous macro quoting function. %UNQUOTE takes
effect during macro execution.
For more information, see Macro Quoting on page 80.
275
This version of the program runs correctly because %UNQUOTE unmasks the value of
TESTVAL.
%let val = aaa;
%let testval = %str(%'&val%');
data _null_;
val = %unquote(&testval);
put 'VAL =' val;
run;
Macro function
%LOWCASE and %QLOWCASE Autocall Macros on page 180, %NRBQUOTE
Function on page 246, and %QLOWCASE Autocall Macro on page 182
Syntax
%UPCASE (character string | text expression)
%QUPCASE(character string | text expression)
Details
The %UPCASE and %QUPCASE functions convert lowercase characters in the
argument to uppercase. %UPCASE does not mask special characters or mnemonic
operators in its result, even when the argument was previously masked by a macro
quoting function.
If the argument contains a special character or mnemonic operator, listed below, use
%QUPCASE. %QUPCASE masks the following special characters and mnemonic
operators in its result:
276
Chapter 17
Macro Functions
& % ' " ( ) + * / < > = ^ ~ ; , # blank
AND OR NOT EQ NE LE LT GE GT IN
%UPCASE and %QUPCASE are useful in the comparison of values because the macro
facility does not automatically convert lowercase characters to uppercase before
comparing values.
Comparisons
Examples
Example 1: Capitalizing a Value to Be Compared
In this example, the macro RUNREPT compares a value input for the macro variable
MONTH to the string DEC. If the uppercase value of the response is DEC, then PROC
FSVIEW runs on the data set REPORTS.ENDYEAR. Otherwise, PROC FSVIEW runs
on the data set with the name of the month in the REPORTS data library.
%macro runrept(month);
%if %upcase(&month)=DEC %then
%str(proc fsview data=reports.endyear; run;);
%else %str(proc fsview data=reports.&month; run;);
%mend runrept;
You can invoke the macro in any of these ways to satisfy the %IF condition:
%runrept(DEC)
%runrept(Dec)
%runrept(dec)
a=begin;
b=%nrstr(&a);
UPCASE produces: %upcase(&b);
QUPCASE produces: %qupcase(&b);
When these statements execute, the following is written to the SAS log:
UPCASE produces: begin
QUPCASE produces: &A
277
Chapter 18
Dictionary
INTO Clause
Assigns values produced by PROC SQL to macro variables.
Type:
Syntax
INTO : macro-variable-specification-1 < ..., : macro-variable-specification-n>
Required Argument
macro-variable-specification
names one or more macro variables to create or update. Precede each macro variable
name with a colon (:). The macro variable specification can be in any one or more of
the following forms:
: macro-variable
specify one or more macro variables. Leading and trailing blanks are not trimmed
from values before they are stored in macro variables:
select style, sqfeet
into :type, :size
from sasuser.houses;
278
Chapter 18
Details
The INTO clause for the SELECT statement can assign the result of a calculation or the
value of a data column (variable) to a macro variable. If the macro variable does not
exist, INTO creates it. You can check the PROC SQL macro variable SQLOBS to see
the number of rows (observations) produced by a SELECT statement.
The INTO clause can be used only in the outer query of a SELECT statement and not in
a subquery. The INTO clause cannot be used when you are creating a table (CREATE
TABLE) or a view (CREATE VIEW).
Macro variables created with INTO follow the scoping rules for the %LET statement.
For more information, see .
Values assigned by the INTO clause use the BEST12. format.
Comparisons
In the SQL procedure, the INTO clause performs a role similar to the SYMPUT routine.
Examples
Example 1: Storing Column Values in Declared Macro Variables
This example is based on the data set SASUSER.HOUSES and stores the values of
columns (variables) STYLE and SQFEET from the first row of the table (or observation
in the data set) in macro variables TYPE and SIZE. The %LET statements strip trailing
blanks from TYPE and leading blanks from SIZE because this type of specification with
INTO does not strip those blanks by default.
proc sql noprint;
select style, sqfeet
into :type, :size
from sasuser.houses;
When this program executes, the following is written to the SAS log:
The first row contains a RANCH with 1250 square feet.
When this program executes, these lines are written to the SAS log:
Row1:
Row2:
Row3:
Row4:
Type=**RANCH
**
Type=**SPLIT
**
Type=**CONDO
**
Type=**TWOSTORY**
Size=**1250**
Size=**1190**
Size=**1400**
Size=**1810**
When this program executes, this line is written to the SAS log:
Types of houses=CONDO, RANCH, SPLIT, TWOSTORY
280
Chapter 18
281
Chapter 19
Macro Statements
Macro Statements
A macro language statement instructs the macro processor to perform an operation. It
consists of a string of keywords, SAS names, and special characters and operators, and it
ends in a semicolon. Some macro language statements are used only in macro
definitions, but you can use others anywhere in a SAS session or job, either inside or
outside macro definitions (referred to as open code).
282
Chapter 19
Macro Statements
Dictionary
%ABORT Statement
Stops the macro that is executing along with the current DATA step, SAS job, or SAS session.
Type:
Restriction:
Macro statement
Allowed in macro definitions only
Syntax
%ABORT <ABEND | CANCEL <FILE> | RETURN | <n>> ;
Required Arguments
ABEND
causes abnormal termination of the current macro and SAS job or session. Results
depend on the method of operation:
sends an error message to the SAS log that states that execution was
terminated by the ABEND option of the %ABORT macro statement
CANCEL <FILE>
causes the cancellation of the current submitted statements. The results depend on
the method of operation.
If the method of operation is batch mode and noninteractive mode, use the CANCEL
option to do the following:
If the method of operation is windowing environment and interactive line mode, use
the CANCEL option to do the following:
If the method of operation is workspace server and stored process server, use the
CANCEL option to do the following:
If the method of operation is SAS IntrNet application server, use the CANCEL
option to do the following:
A separate execution is created for each request. The execution submits the
request code. A CANCEL in the request code clears the current submitted code
but does not terminate the execution or the SAS session.
FILE
when coded as an option to the CANCEL argument in an autoexec file or in a
%INCLUDE file, causes only the contents of the autoexec file or %INCLUDE
file to be cleared by the %ABORT statement. Other submitted source statements
will be executed after the autoexec or %INCLUDE file.
Restriction: The CANCEL argument cannot be submitted using
SAS/SHARE,SAS/CONNECT, or SAS/AF.
CAUTION: When %ABORT CANCEL FILE option is executed within a
%INCLUDE file, all open macros are closed and execution resumes at the
next source line of code.
RETURN
causes abnormal termination of the current macro and SAS job or session. Results
depend on the method of operation:
sends an error message to the SAS log that states that execution was
terminated by the RETURN option of the %ABORT macro statement
n
an integer value that enables you to specify a condition code:
When used with the CANCEL argument, the value is placed in the SYSINFO
automatic macro variable.
When it is NOT used with the CANCEL statement, SAS returns the value to the
operating environment when the execution stops. The range of values for n
depends on your operating environment.
284
Chapter 19
Macro Statements
Details
If you specify no argument, the %ABORT macro statement produces these results under
the following methods of operation:
stops processing the current macro and DATA step and writes an error message
to the SAS log. Data sets can contain an incomplete number of observations or
no observations, depending on when SAS encountered the %ABORT macro
statement.
windowing environment
creates a data set that contains the observations that are processed before the
%ABORT macro statement is encountered
prints a message to the log that an %ABORT macro statement terminated the
DATA step
stops processing the current macro and DATA step. Any further DATA steps or
procedures execute normally.
Comparisons
The %ABORT macro statement causes SAS to stop processing the current macro and
DATA step. What happens next depends on
Macro statement
Allowed in macro definitions or open code
Syntax
%*commentary;
Required Argument
commentary
is a descriptive message of any length.
Details
The macro comment statement is useful for describing macro code. Text from a macro
comment statement is not constant text and is not stored in a compiled macro. Because a
semicolon ends the comment statement, the comment cannot contain internal semicolons
unless the internal semicolons are enclosed in quotation marks. Macro comment
statements are not recognized when they are enclosed in quotation marks.
Macro comment statements are complete macro statements and are processed by the
macro facility. Quotation marks within a macro comment must match.
Only macro comment statements and SAS comments of the form /*commentary*/ in
macro definitions or open code might be used to hide macro statements from processing
by the macro facility.
Comparisons
SAS comment statements of the form
*commentary;
or
comment commentary;
are complete SAS statements. Consequently, they are processed by the tokenizer and
macro facility and cannot contain semicolons or unmatched quotation marks. SAS
comment statements of the form
*commentary;
or
comment commentary;
are stored as constant text in a compiled macro. These two types will execute any macro
statements within a comment. SAS recommends not to use these within a macro
definition.
SAS comments in the form
/*commentary*/
are not tokenized, but are processed as a string of characters. These comments can
appear anywhere a single blank can appear and can contain semicolons or unmatched
quotation marks. SAS comments in the form
/*commentary*/
286
Chapter 19
Macro Statements
When you execute VERDATA, the macro processor generates the following:
DATA CHECK;
INFILE INA;
INPUT X Y Z;
* CHECK DATA;
IF X<5 OR Y<5 OR Z<5 THEN LIST;
RUN;
%COPY Statement
Copies specified items from a SAS macro library.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
%MACRO Statement on page 304 and SASMSTORE= System Option on page
357
Syntax
%COPY macro-name /<option1 <...option-n>> SOURCE
Required Arguments
macro-name
name of the macro that the %COPY statement will use.
%DISPLAY Statement
287
SOURCESRC
specifies that the source code of the macro will be copied to the output destination. If
the OUTFILE= option is not specified, the source is written to the SAS log.
option1 <...option-n>
must be one or more of the following options:
LIBRARY= librefLIB=
specifies the libref of a SAS library that contains a catalog of stored compiled
SAS macros. If no library is specified, the libref specified by the SASMSTORE=
option is used.
Restriction:
%DISPLAY Statement
Displays a macro window.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
%WINDOW Statement on page 321
Syntax
%DISPLAY window<.group> <NOINPUT> <BLANK>
<BELL> <DELETE> ;
288
Chapter 19
Macro Statements
Required Arguments
window <.group>
names the window and group of fields to be displayed. If the window has more than
one group of fields, give the complete window.group specification. If a window
contains a single unnamed group, specify only window.
NOINPUT
specifies that you cannot input values into fields displayed in the window. If you
omit the NOINPUT option, you can input values into unprotected fields displayed in
the window. Use the NOINPUT option when the %DISPLAY statement is inside a
macro definition and you want to merge more than one group of fields into a single
display. Using NOINPUT in a particular %DISPLAY statement causes the group
displayed to remain visible when later groups are displayed.
BLANK
clears the display in the window. Use the BLANK option to prevent fields from a
previous display from appearing in the current display. This option is useful only
when the %DISPLAY statement is inside a macro definition and when it is part of a
window.group specification. When the %DISPLAY statement is outside a macro
definition, the display in the window is cleared automatically after the execution of
each %DISPLAY statement.
BELL
rings your personal computer's bell, if available, when the window is displayed.
DELETE
deletes the display of the window after processing passes from the %DISPLAY
statement on which the option appears. DELETE is useful only when the
%DISPLAY statement is inside a macro definition.
Details
You can display only one group of fields in each execution of a %DISPLAY statement.
If you display a window containing any unprotected fields, enter values into any
required fields and press ENTER to remove the display from the window.
If a window contains only protected fields, pressing ENTER removes the display from
the window. While a window is displayed, you can use commands and function keys to
view other windows, change the size of the current window, and so on.
%DO Statement
Begins a %DO group.
Type:
Macro statement
Restriction:
See:
Syntax
%DO;
text and macro language statements
%END;
289
Details
The %DO statement designates the beginning of a section of a macro definition that is
treated as a unit until a matching %END statement is encountered. This macro section is
called a %DO group. %DO groups can be nested.
A simple %DO statement often appears in conjunction with %IF-%THEN/%ELSE
statements to designate a section of the macro to be processed depending on whether the
%IF condition is true or false.
Specifying stat as a value for the macro variable REQUEST generates the PROC
MEANS step. Specifying printit generates the PROC PRINT step. Specifying any
other value writes a customized error message to the SAS log.
Macro statement
Restriction:
See:
Syntax
%DO macro-variable=start %TO stop <%BY increment> ;
text and macro language statements
%END;
290
Chapter 19
Macro Statements
Required Arguments
macro-variable
names a macro variable or a text expression that generates a macro variable name. Its
value functions as an index that determines the number of times the %DO loop
iterates. If the macro variable specified as the index does not exist, the macro
processor creates it in the local symbol table.
You can change the value of the index variable during processing. For example,
using conditional processing to set the value of the index variable beyond the stop
value when a certain condition is met ends processing of the loop.
startstop
specify integers or macro expressions that generate integers to control the number of
times the portion of the macro between the iterative %DO and %END statements is
processed.
The first time the %DO group iterates, macro-variable is equal to start. As
processing continues, the value of macro-variable changes by the value of increment
until the value of macro-variable is outside the range of integers included by start
and stop.
increment
specifies an integer (other than 0) or a macro expression that generates an integer to
be added to the value of the index variable in each iteration of the loop. By default,
increment is 1. Increment is evaluated before the first iteration of the loop.
Therefore, you cannot change it as the loop iterates.
Macro statement
Restriction:
See:
Syntax
%DO %UNTIL (expression);
text and macro language statements
%END;
Required Argument
expression
can be any macro expression that resolves to a logical value. The macro processor
evaluates the expression at the bottom of each iteration. The expression is true if it is
an integer other than zero. The expression is false if it has a value of zero. If the
expression resolves to a null value or a value containing nonnumeric characters, the
macro processor issues an error message.
These examples illustrate expressions for the %DO %UNTIL statement:
%do %until(&hold=no);
%do %until(%index(&source,&excerpt)=0);
Details
The %DO %UNTIL statement checks the value of the condition at the bottom of each
iteration. Thus, a %DO %UNTIL loop always iterates at least once.
292
Chapter 19
Macro Statements
%end;
%mend grph;
When you invoke the GRPH macro with a value of HBAR, the macro generates these
statements:
PROC CHART;
HBAR SEX / GROUP=DEPT;
RUN;
When you invoke the GRPH macro with a value of PIE, then the %PUT statement writes
this line to the SAS log:
ERROR: PIE type not supported
Macro statement
Restriction:
See:
Syntax
%DO %WHILE (expression);
text and macro program statements
%END;
Required Argument
expression
can be any macro expression that resolves to a logical value. The macro processor
evaluates the expression at the top of each iteration. The expression is true if it is an
integer other than zero. The expression is false if it has a value of zero. If the
expression resolves to a null value or to a value containing nonnumeric characters,
the macro processor issues an error message.
These examples illustrate expressions for the %DO %WHILE statement:
%do %while(&a<&b);
%do %while(%length(&name)>20);
Details
The %DO %WHILE statement tests the condition at the top of the loop. If the condition
is false the first time the macro processor tests it, the %DO %WHILE loop does not
iterate.
If the title text contained special characters such as commas, you could invoke it with the
%NRSTR function.
%untag(
%nrstr(<title>Accounts: Baltimore, Chicago, and Los Angeles</title>))
%END Statement
Ends a %DO group.
Type:
Restriction:
Macro statement
Allowed in macro definitions only
Syntax
%END;
294
Chapter 19
Macro Statements
%macro test(finish);
%let i=1;
%do %while (&i<&finish);
%put the value of i is &i;
%let i=%eval(&i+1);
%end;
%mend test;
%test(5)
Invoking the TEST macro with 5 as the value of finish writes these lines to the SAS log:
The
The
The
The
value
value
value
value
of
of
of
of
i
i
i
i
is
is
is
is
1
2
3
4
%GLOBAL Statement
Creates macro variables that are available during the execution of an entire SAS session.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
%LOCAL Statement on page 302
Syntax
%GLOBAL macro-variable-1 <...macro-variable-n>;
Required Argument
macro-variable-1 <...macro-variable-n>
is the name of one or more macro variables or a text expression that generates one or
more macro variable names. You cannot use a SAS variable list or a macro
expression that generates a SAS variable list in a %GLOBAL statement.
Details
The %GLOBAL statement creates one or more global macro variables and assigns null
values to the variables. Global macro variables are variables that are available during the
entire execution of the SAS session or job.
A macro variable created with a %GLOBAL statement has a null value until you assign
it some other value. If a global macro variable already exists and you specify that
variable in a %GLOBAL statement, the existing value remains unchanged.
Comparisons
Both the %GLOBAL statement and the %LOCAL statement create macro variables
with a specific scope. However, the %GLOBAL statement creates global macro
variables that exist for the duration of the session or job. The %LOCAL statement
creates local macro variables that exist only during the execution of the macro that
defines the variable.
If you define both a global macro variable and a local macro variable with the same
name, the macro processor uses the value of the local variable during the execution
of the macro that contains the local variable. When the macro that contains the local
variable is not executing, the macro processor uses the value of the global variable.
When you submit the following program, the macro VARS generates the VAR statement
and the values for the macro variables used in the title statement.
proc print;
%vars(last=50)
title "Analysis of Tests &gfirst-&glast";
run;
%GOTO Statement
Branches macro processing to the specified label.
Type:
Macro statement
Alias:
%GO TO
Restriction:
See:
Syntax
%GOTO label;
Required Argument
label
is either the name of the label that you want execution to branch to or a text
expression that generates the label. A text expression that generates a label in a
%GOTO statement is called a computed %GOTO destination.1
The following examples illustrate how to use label:
%goto findit;
296
Chapter 19
Macro Statements
%goto &home;
CAUTION:
No percent sign (%) precedes the label name in the %GOTO statement. The
syntax of the %GOTO statement does not include a % in front of the label name.
If you use a %, the macro processor attempts to call a macro by that name to
generate the label.
Details
Branching with the %GOTO statement has two restrictions. First, the label that is the
target of the %GOTO statement must exist in the current macro; you cannot branch to a
label in another macro with a %GOTO statement. Second, a %GOTO statement cannot
cause execution to branch to a point inside an iterative %DO, %DO %UNTIL, or %DO
%WHILE loop that is not currently executing.
%IF-%THEN/%ELSE Statement
Conditionally process a portion of a macro.
Type:
Restriction:
Macro statement
Allowed in macro definitions only
Syntax
%IF expression %THEN action;
<%ELSEaction;>
Required Arguments
expression
is any macro expression that resolves to an integer. If the expression resolves to an
integer other than zero, the expression is true and the %THEN clause is processed. If
the expression resolves to zero, then the expression is false and the %ELSE
statement, if one is present, is processed. If the expression resolves to a null value or
a value containing nonnumeric characters, the macro processor issues an error
message. For more information about writing macro expressions and their
evaluation, see Macro Expressions on page 71.
The following examples illustrate using expressions in the %IF-%THEN statement:
%if &i=10 and &j>5 %then %put check the index variables;
action
is either constant text, a text expression, or a macro statement. If action contains
semicolons (for example, in SAS statements), then the first semicolon after %THEN
ends the %THEN clause. Use a %DO group or a quoting function, such as %STR, to
prevent semicolons in action from ending the %IF-%THEN statement. The
following examples show two ways to conditionally generate text that contains
semicolons:
Details
The macro language does not contain a subsetting %IF statement. Thus, you cannot use
%IF without %THEN.
Expressions that compare character values in the %IF-%THEN statement uses the sort
sequence of the host operating system for the comparison. Refer to The SORT
PROCEDURE in the Base SAS Procedures Guide for more information about host sort
sequences.
Comparisons
Although they look similar, the %IF-%THEN/%ELSE statement and the IF-THEN/
ELSE statement belong to two different languages. In general, %IF-%THEN/%ELSE
statement, which is part of the SAS macro language, conditionally generates text.
However, the IF-THEN/ELSE statement, which is part of the SAS language,
conditionally executes SAS statements during DATA step execution.
The expression that is the condition for the %IF-%THEN/%ELSE statement can contain
only operands that are constant text or text expressions that generate text. However, the
expression that is the condition for the IF-THEN/ELSE statement can contain only
operands that are DATA step variables, character constants, numeric constants, or date
and time constants.
298
Chapter 19
Macro Statements
When the %IF-%THEN/%ELSE statement generates text that is part of a DATA step, it
is compiled by the DATA step compiler and executed. On the other hand, when the IFTHEN/ELSE statement executes in a DATA step, any text generated by the macro
facility has been resolved, tokenized, and compiled. No macro language elements exist
in the compiled code. Example 1: Contrasting the %IF-%THEN/%ELSE Statement
with the IF-THEN/ELSE Statement illustrates this difference.
For more information, see SAS Programs and Macro Processing on page 11 and
Macro Expressions on page 71.
Examples
Example 1: Contrasting the %IF-%THEN/%ELSE Statement with the
IF-THEN/ELSE Statement
In the SETTAX macro, the %IF-%THEN/%ELSE statement tests the value of the macro
variable TAXRATE to control the generation of one of two DATA steps. The first
DATA step contains an IF-THEN/ELSE statement that uses the value of the DATA step
variable SALE to set the value of the DATA step variable TAX.
%macro settax(taxrate);
%let taxrate = %upcase(&taxrate);
%if &taxrate = CHANGE %then
%do;
data thisyear;
set lastyear;
if sale > 100 then tax = .05;
else tax = .08;
run;
%end;
%else %if &taxrate = SAME %then
%do;
data thisyear;
set lastyear;
tax = .03;
run;
%end;
%mend settax;
When the value of the macro variable TAXRATE is CHANGE, then the macro generates
the following DATA step:
DATA THISYEAR;
SET LASTYEAR;
IF SALE > 100 THEN TAX = .05;
ELSE TAX = .08;
RUN;
When the value of the macro variable TAXRATE is SAME, then the macro generates the
following DATA step:
DATA THISYEAR;
SET LASTYEAR;
TAX = .03;
RUN;
%INPUT Statement
299
%INPUT Statement
Supplies values to macro variables during macro execution.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
%PUT Statement on page 310%WINDOW Statement on page 321 and
SYSBUFFR Automatic Macro Variable on page 192
Syntax
%INPUT<macro-variable-1 <...macro-variable-n>> ;
Required Arguments
no argument
specifies that all text entered is assigned to the automatic macro variable
SYSBUFFR.
macro-variable-1 <...macro-variable-n>
is the name of a macro variable or a macro text expression that produces a macro
variable name. The %INPUT statement can contain any number of variable names
separated by blanks.
300
Chapter 19
Macro Statements
Details
The macro processor interprets the line submitted immediately after a %INPUT
statement as the response to the %INPUT statement. That line can be part of an
interactive line mode session, or it can be submitted from within the Program Editor
window during a windowing environment session.
When a %INPUT statement executes as part of an interactive line mode session, the
macro processor waits for you to enter a line containing values. In a windowing
environment session, the macro processor does NOT wait for you to input values.
Instead, it simply reads the next line that is processed in the program and attempts to
assign variable values. Likewise, if you invoke a macro containing a %INPUT statement
in open code as part of a longer program in a windowing environment, the macro
processor reads the next line in the program that follows the macro invocation. When
you submit a %INPUT statement in open code from a windowing environment, ensure
that the line that follows a %INPUT statement or a macro invocation that includes a
%INPUT statement contains the values that you want to assign.
When you name variables in the %INPUT statement, the macro processor matches the
variables with the values in your response based on their positions. That is, the first
value that you enter is assigned to the first variable named in the %INPUT statement, the
second value is assigned to the second variable, and so on.
Each value to be assigned to a particular variable must be a single word or a string
enclosed in quotation marks. To separate values, use blanks. After all values have been
matched with macro variable names, excess text becomes the value of the automatic
macro variable SYSBUFFR.
%label Statement
Identifies the destination of a %GOTO statement.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions only
%GOTO Statement on page 295
Syntax
%label: macro-text
Required Arguments
label
specifies a SAS name.
%LET Statement
301
macro-text
is a macro statement, a text expression, or constant text. The following examples
illustrate each:
Details
The label name is preceded by a %. When you specify this label in a %GOTO
statement, do not precede it with a %.
An alternative to using the %GOTO statement and statement label is to use a %IF%THEN statement with a %DO group.
Invoking the macro INFO with TYPE equal to short generates these statements:
PROC PRINT DATA=_LAST_(OBS=10);
RUN;
%LET Statement
Creates a macro variable and assigns it a value.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
%STR and %NRSTR Functions on page 254
Syntax
%LET macro-variable =<value> ;
302
Chapter 19
Macro Statements
Required Arguments
macro-variable
is either the name of a macro variable or a text expression that produces a macro
variable name. The name can refer to a new or existing macro variable.
value
is a character string or a text expression. Omitting value produces a null value (0
characters). Leading and trailing blanks in value are ignored. To make them
significant, enclose value with the %STR function.
Details
If the macro variable named in the %LET statement already exists, the %LET statement
changes the value. A %LET statement can define only one macro variable at a time.
*/
*/
/* &subject resolves
/* before assignment
*/
*/
When you submit these statements, the TITLE macro generates the following
statements:
TITLE1 "The History of Genetics";
TITLE2 "Genetics Today";
TITLE3 "The Future of Genetics";
%LOCAL Statement
Creates macro variables that are available only during the execution of the macro where they are defined.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions only
%GLOBAL Statement on page 294
Syntax
%LOCAL macro-variable-1 <...macro-variable-n>;
%LOCAL Statement
303
Required Argument
macro-variable-1 <...macro-variable-n>
is the name of one or more macro variables or a text expression that generates one or
more macro variable names. You cannot use a SAS variable list or a macro
expression that generates a SAS variable list in a %LOCAL statement.
Details
The %LOCAL statement creates one or more local macro variables. A macro variable
created with %LOCAL has a null value until you assign it some other value. Local
macro variables are variables that are available only during the execution of the macro in
which they are defined.
Use the %LOCAL statement to ensure that macro variables created earlier in a program
are not inadvertently changed by values assigned to variables with the same name in the
current macro. If a local macro variable already exists and you specify that variable in a
%LOCAL statement, the existing value remains unchanged.
Comparisons
Both the %LOCAL statement and the %GLOBAL statement create macro variables
with a specific scope. However, the %LOCAL statement creates local macro
variables that exist only during the execution of the macro that contains the variable,
and the %GLOBAL statement creates global macro variables that exist for the
duration of the session or job.
If you define a local macro variable and a global macro variable with the same name,
the macro facility uses the value of the local variable during the execution of the
macro that contains that local variable. When the macro that contains the local
variable is not executing, the macro facility uses the value of the global variable.
304
Chapter 19
Macro Statements
%MACRO Statement
Begins a macro definition.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
%MEND Statement on page 310 and SYSPBUFF Automatic Macro Variable on
page 210
Syntax
%MACRO macro-name <(parameter-list)> </ option-1 <...option-n>> ;
Required Arguments
macro-name
names the macro. A macro name must be a SAS name, which you supply; you
cannot use a text expression to generate a macro name in a %MACRO statement. In
addition, do not use macro reserved words as a macro name. (For a list of macro
reserved words, see Reserved Words in the Macro Facility on page 363.)
parameter-list
names one or more local macro variables whose values you specify when you invoke
the macro. Parameters are local to the macro that defines them. You must supply
each parameter name; you cannot use a text expression to generate it. A parameter
list can contain any number of macro parameters separated by commas. The macro
variables in the parameter list are usually referenced in the macro.
parameter-list can be
positionalparameter-1
<. . . ,positionalparameter-n>
keywordparameter=<value>
<. . . ,keywordparametern=<value>>
%MACRO Statement
305
Note: You can define an unlimited number of parameters. If both positional and
keyword parameters appear in a macro definition, positional parameters must
come first.
option-1 <...option-n>
can be one or more of these optional arguments:
CMD
specifies that the macro can accept either a name-style invocation or a commandstyle invocation. Macros defined with the CMD option are sometimes called
command-style macros.
Use the CMD option only for macros that you plan to execute from the command
line of a SAS window. The SAS system option CMDMAC must be in effect to
use command-style invocations. If CMDMAC is in effect and you have defined a
command-style macro in your program, the macro processor scans the first word
of every SAS command to see whether it is a command-style macro invocation.
When the SAS system option NOCMDMAC option is in effect, the macro
processor treats only the words following the % symbols as potential macro
invocations. If the CMDMAC option is not in effect, you still can use a namestyle invocation for a macro defined with the CMD option.
DES='text'
specifies a description for the macro entry in the macro catalog. The description
text can be up to 256 characters in length. Enclose the description in quotation
marks. This description appears in the CATALOG window when you display the
contents of the catalog containing the stored compiled macros. The DES= option
is especially useful when you use the stored compiled macro facility.
MINDELIMITER='single character';
specifies a value that will override the value of the MINDELIMITER= global
option. The value must be a single character enclosed in single quotation marks
and can appear only once in a %MACRO statement.
MINOPERATOR | NOMINOPERATOR
specifies that the macro processor recognizes and evaluates the mnemonic IN
and the special character # as logical operators when evaluating arithmetic or
logical expressions during the execution of the macro. The setting of this
argument overrides the setting of the NOMINOPERATOR global system option.
The NOMINOPERATOR argument specifies that the macro processor does not
recognize the mnemonic IN and the special character # as logical operators when
evaluating arithmetic or logical expressions during the execution of the macro.
The setting of this argument overrides the setting of the MINOPERATOR global
system option.
PARMBUFF
assigns the entire list of parameter values in a macro call, including the
parentheses in a name-style invocation, as the value of the automatic macro
variable SYSPBUFF. Using the PARMBUFF option, you can define a macro that
accepts a varying number of parameter values.
If the macro definition includes both a set of parameters and the PARMBUFF
option, the macro invocation causes the parameters to receive values. It also
causes the entire invocation list of values to be assigned to SYSPBUFF.
To invoke a macro defined with the PARMBUFF option in a windowing
environment or interactive line mode session without supplying a value list, enter
an empty set of parentheses or more program statements after the invocation.
306
Chapter 19
Macro Statements
This action indicates the absence of a value list, even if the macro definition
contains no parameters.
SECURE | NOSECURE
causes the contents of a macro to be encrypted when stored in a stored compiled
macro library. This feature enables you to write secure macros that will protect
intellectual property that is contained in the macros. The macros are secured
using the Encryption Algorithm Manager.
A NOSECURE option has been implemented to aid in the global edit of a source
file or library to turn on security. For example, when you are creating several
macros that will need to be secure. When creating the macros, use the
NOSECURE option. When all macros are completed and ready for production,
you can do a global edit and change NOSECURE to SECURE.
If you use the SECURE and SOURCE options on a macro, no output is produced
when you use the %COPY statement. The following NOTE is written to the SAS
log:
NOTE: The macro %name was compiled with the SECURE
option. No output will be produced for this %COPY
statement.
STMT
specifies that the macro can accept either a name-style invocation or a statementstyle invocation. Macros defined with the STMT option are sometimes called
statement-style macros.
The IMPLMAC system option must be in effect to use statement-style macro
invocations. If IMPLMAC is in effect and you have defined a statement-style
macro in your program, the macro processor scans the first word of every SAS
statement to see whether it is a statement-style macro invocation. When the
NOIMPLMAC option is in effect, the macro processor treats only the words
following the % symbols as potential macro invocations. If the IMPLMAC
option is not in effect, you still can use a name-style invocation for a macro
defined with the STMT option.
SOURCE SRC
combines and stores the source of the compiled macro with the compiled macro
code as an entry in a SAS catalog in a permanent SAS library. The SOURCE
option requires that the STORE option and the MSTORED option be set. You
can use the SASMSTORE= option to identify a permanent SAS library. You can
store a macro or call a stored compiled macro only when the MSTORED option
is in effect. (For more information, see Storing and Reusing Macros on page
113.)
Note: The source code saved by the SOURCE option begins with the %MACRO
keyword and ends with the semi-colon following the %MEND statement.
CAUTION:
The SOURCE option cannot be used on nested macro definitions (macro
definitions contained within another macro).
STORE
stores the compiled macro as an entry in a SAS catalog in a permanent SAS
library. Use the SAS system option SASMSTORE= to identify a permanent SAS
library. You can store a macro or call a stored compiled macro only when the
SAS system option MSTORED is in effect. (For more information, see Storing
and Reusing Macros on page 113.)
%MACRO Statement
307
Details
The %MACRO statement begins the definition of a macro, assigns the macro a name,
and can include a list of macro parameters, a list of options, or both.
A macro definition must precede the invocation of that macro in your code. The
%MACRO statement can appear anywhere in a SAS program, except within data lines.
A macro definition cannot contain a CARDS statement, a DATALINES statement, a
PARMCARDS statement, or data lines. Use an INFILE statement instead.
By default, a defined macro is an entry in a SAS catalog in the WORK library. You can
also store a macro in a permanent SAS catalog for future use. However, in SAS 6 and
earlier, SAS does not support copying, renaming, or transporting macros.
You can nest macro definitions, but doing so is rarely necessary and is often inefficient.
If you nest a macro definition, then it is compiled every time you invoke the macro that
includes it. Instead, nesting a macro invocation inside another macro definition is
sufficient in most cases.
Examples
Example 1: Using the %MACRO Statement with Positional
Parameters
In this example, the macro PRNT generates a PROC PRINT step. The parameter in the
first position is VAR, which represents the SAS variables that appear in the VAR
statement. The parameter in the second position is SUM, which represents the SAS
variables that appear in the SUM statement.
%macro prnt(var,sum);
proc print data=srhigh;
var &var;
sum ∑
run;
%mend prnt;
In the macro invocation, all text up to the comma is the value of parameter VAR; text
following the comma is the value of parameter SUM.
%prnt(school district enrollmt, enrollmt)
308
Chapter 19
Macro Statements
run;
%mend finance;
or
%finance;
To assign a new value, give the name of the parameter, an equal sign, and the value:
%finance(xvar=year)
Because the value of YVAR did not change, it retains its default value. Macro
execution produces this code:
PROC PLOT DATA=YEAREND;
PLOT EXPENSES*YEAR;
RUN;
This invocation of PRINTZ contains four parameter values, PURPLE, RED, BLUE, and
TEAL although the macro definition does not contain any individual parameters:
%printz(purple,red,blue,teal)
PRINT DATA=PURPLE;
PRINT DATA=RED;
PRINT DATA=BLUE;
PRINT DATA=TEAL;
%MACRO Statement
309
The following example demonstrates the use of the STORE and SECURE options to
create a macro that is encrypted.
options mstored sasmstore=mylib;
libname mylib "mylib";
%macro secure/store secure; /* This macro is encrypted */
data _null_;
x=1;
put "This data step was generated from a secure macro.";
run;
%mend secure;
310
Chapter 19
Macro Statements
%secure
filename maccat catalog 'mylib.sasmacr.secure.macro';
data _null_;
infile maccat;
input;
list;
run;
%MEND Statement
Ends a macro definition.
Type:
Restriction:
Macro statement
Allowed in macro definitions only
Syntax
%MEND <macro-name> ;
Required Argument
macro-name
names the macro as it ends a macro definition. Repeating the name of the macro is
optional, but it is useful for clarity. If you specify macro-name, the name in the
%MEND statement should match the name in the %MACRO statement; otherwise,
SAS issues a warning message.
%PUT Statement
Writes text or macro variable information to the SAS log.
Type:
Restriction:
Macro statement
Allowed in macro definitions or open code
Syntax
%PUT <text | _ALL_ | _AUTOMATIC_ | _GLOBAL_ | _LOCAL_ | _USER_> ;
Required Arguments
no argument
places a blank line in the SAS log.
text
is text or a text expression that is written to the SAS log. If text is longer than the
current line size, the remainder of the text appears on the next line. The %PUT
statement removes leading and trailing blanks from text unless you use a macro
quoting function.
_ALL_
lists the values of all user-generated and automatic macro variables.
_AUTOMATIC_
lists the values of automatic macro variables. The automatic variables listed depend
on the SAS products installed at your site and on your operating system. The scope is
identified as AUTOMATIC.
_GLOBAL_
lists user-generated global macro variables. The scope is identified as GLOBAL.
_LOCAL_
lists user-generated local macro variables. The scope is the name of the currently
executing macro.
_USER_
describes user-generated global and local macro variables. The scope is identified
either as GLOBAL, or as the name of the macro in which the macro variable is
defined.
Details
When you use the %PUT statement to list macro variable descriptions, the %PUT
statement includes only the macro variables that exist at the time the statement executes.
The description contains the macro variable's scope, name, and value. Macro variables
with null values show only the scope and name of the variable. Characters in values that
have been quoted with macro quoting functions remain quoted. Values that are too long
for the current line size wrap to the next line or lines. Macro variables are listed in order
from the current local macro variables outward to the global macro variables.
Note: Within a particular scope, macro variables might appear in any order, and the
order might change in different executions of the %PUT statement or different SAS
sessions. Do not write code that depends on locating a variable in a particular
position in the list.
The following figure shows the relationship of these terms.
Figure 19.1 %PUT Arguments by Type and Scope
312
Chapter 19
Macro Statements
The %PUT statement displays text in different colors to generate messages that look like
ERROR, NOTE, and WARNING messages generated by SAS. To display text in
different colors, the first word in the %PUT statement must be ERROR, NOTE, or
WARNING, followed immediately by a colon or a hyphen. You might also use the
national-language equivalents of these words. When you use a hyphen, the ERROR,
NOTE, or WARNING word is blanked out.
Note: If you use the %PUT statement and the last message text that was generated by
the SYSWARNINGTEXT and SYSERRORTEXT automatic macro variables
contained an & or %, you must use the %SUPERQ macro quoting function. For more
information, see SYSERRORTEXT Automatic Macro Variable on page 202 and
SYSWARNINGTEXT Automatic Macro Variable on page 219.
If you place an equal sign between the ampersand and the macro variable name of
a direct macro variable reference, the macro variable's name displays in the log along
with the macro variable's value.
TIP
%let x=1;
%put &=x;
X=1;
Examples
Example 1: Displaying Text
The following statements illustrate using the %PUT statement to write text to the SAS
log:
%put One line of text.;
%put %str(Use a semicolon(;) to end a SAS statement.);
%put %str(Enter the student%'s address.);
When you submit these statements, these lines appear in the SAS log:
One line of text.
Use a semicolon(;) to end a SAS statement.
Enter the student's address.
The result in the SAS log (depending on the products installed at your site) lists the
scope, name, and value of each automatic variable:
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
AUTOMATIC
SYSBUFFR
SYSCMD
SYSDATE 21JUN97
SYSDAY Wednesday
SYSDEVIC
SYSDSN
_NULL_
SYSENV FORE
SYSERR 0
SYSFILRC 0
SYSINDEX 0
SYSINFO 0
Notice that SYSDATE does not appear because it is an automatic macro variable.
To display the user-generated variables after macro MYPRINT finishes, submit another
%PUT statement.
%put _user_;
The result in the SAS log does not list the macro variable NAME because it was local to
MYPRINT and ceased to exist when MYPRINT finished execution.
GLOBAL FOOT Preliminary Data
In the result that is printed in the SAS log, the macro variable FIRSTVAR, which was
created after the first %PUT _LOCAL_ statement, appears only in the second list.
FIRST LIST:
ANALYZE NAME consumer
ANALYZE VARS car house stereo
SECOND LIST:
ANALYZE NAME consumer
ANALYZE VARS car house stereo
ANALYZE FIRSTVAR car
314
Chapter 19
Macro Statements
%RETURN Statement
Execution causes normal termination of the currently executing macro.
Type:
Restriction:
Macro Statement
Valid only in a macro definition
Syntax
%RETURN;
Details
The %RETURN macro causes normal termination of the currently executing macro.
%SYMDEL Statement
Deletes the specified variable or variables from the macro global symbol table.
Type:
Macro Statement
Syntax
%SYMDEL macro-variable-1 <...macro-variable-n></option> ;
Required Arguments
macro-variable-1 <...macro-variable-n>
is the name of one or more macro variables or a text expression that generates one or
more macro variable names. You cannot use a SAS variable list or a macro
expression that generates a SAS variable list in a %SYMDEL statement.
options
NOWARN
suppresses the warning message when an attempt is made to delete a non-existent
macro variable.
%SYSCALL Statement
315
Details
%SYMDEL statement issues a warning when an attempt is made to delete a non-existent
macro variable. To suppress this message, use the NOWARN option.
%SYSCALL Statement
Invokes a SAS call routine.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or in open code
%SYSFUNC and %QSYSFUNC Functions on page 268
Syntax
%SYSCALL call-routine<(call-routine-argument-1 <...call-routine-argument-n>)> ;
Required Arguments
call-routine
is a SAS or user-written CALL routine created with SAS/TOOLKIT software or a
routine created using the FCMP Procedure in Base SAS Procedures Guide. All
SAS call routines are accessible with %SYSCALL except LABEL, VNAME,
SYMPUT, and EXECUTE.
call-routine-argument-1 <...call-routine-argument-n>
is one or more macro variable names (with no leading ampersands), separated by
commas. You can use a text expression to generate part or all of the CALL routine
arguments.
Details
When %SYSCALL invokes a CALL routine, the value of each macro variable argument
is retrieved and passed unresolved to the CALL routine. Upon completion of the CALL
routine, the value for each argument is written back to the respective macro variable. If
%SYSCALL encounters an error condition, the execution of the CALL routine
terminates without updating the macro variable values, an error message is written to the
log, and macro processing continues.
Note: The arguments to %SYSCALL are evaluated according to the rules of the SAS
macro language. This includes both the function name and the argument list to the
function. In particular, an empty argument position will not generate a NULL
argument, but a zero length argument.
CAUTION:
Do not use leading ampersands on macro variable names. The arguments in the
CALL routine invoked by the %SYSCALL macro are resolved before execution. If
you use leading ampersands, then the values of the macro variables are passed to the
CALL routine rather than the names of the macro variables.
CAUTION:
Macro variables contain only character data. When an argument to a function
might be either numeric data or character data, %SYSCALL attempts to convert the
supplied data to numeric data. This causes truncation of any trailing blanks if the
316
Chapter 19
Macro Statements
data was character data. %SYSCALL does not modify arguments that might be
character data. You can preserve the trailing blanks by using the %QUOTE function
when assigning the value to the macro variable that will be supplied as the argument
to the function. To determine whether it is necessary to preserve the trailing blanks
using the %QUOTE function, consult the documentation for the desired function to
see whether the arguments are numeric only, character only, or either numeric or
character. Use the %QUOTE function to quote the value supplied to arguments that
are documented to be either numeric or character.
%let j=1;
%let x=fax;
%let y=fedex;
%let z=phone;
%put j=&j x=&x y=&y z=&z
j=1 x=fax y=fedex z=phone
%syscall allperm(j,x,y,z);
%put j=&j x=&x y=&y z=&z
j=1 x=250 y=65246 z=phone
123456;
0;
ranuni(a,b);
&b;
The %PUT statement writes the following values of the macro variables A and B to the
SAS log:
1587033266 0.739019954
%SYSEXEC Statement
Issues operating environment commands.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
SYSSCP and SYSSCPL Automatic Macro Variables on page 212 and SYSRC
Automatic Macro Variable on page 212
Syntax
%SYSEXEC<command> ;
%SYSLPUT Statement
317
Required Arguments
no argument
puts you into operating environment mode under most operating environments,
where you can issue operating environment commands and return to your SAS
session.
command
is any operating environment command. If command contains a semicolon, use a
macro quoting function.
Details
The %SYSEXEC statement causes the operating environment to immediately execute
the command that you specify and assigns any return code from the operating
environment to the automatic macro variable SYSRC. Use the %SYSEXEC statement
and the automatic macro variables SYSSCP and SYSSCPL to write portable macros that
run under multiple operating environments.
Operating Environment Information
The following items related to the use of the %SYSEXEC statement are operating
environment specific. For details, see the SAS documentation for your operating
environment.
the way you return from operating environment mode to your SAS session after
executing the %SYSEXEC statement with no argument.
the return codes that you get in the automatic macro variable SYSRC.
Comparisons
The %SYSEXEC statement is analogous to the X statement and the X windowing
environment command. However, unlike the X statement and the X windowing
environment command, host commands invoked with %SYSEXEC should not be
enclosed in quotation marks.
%SYSLPUT Statement
Creates a new macro variable or modifies the value of an existing macro variable on a remote host or
server.
Type:
Restriction:
Requirement:
See:
Macro Statement
Allowed in macro definitions or open code
SAS/CONNECT
%LET Statement on page 301 and %SYSRPUT Statement on page 319
Syntax
%SYSLPUTmacro-variable=<value</REMOTE=remote-session-identifier>> ;
318
Chapter 19
Macro Statements
Required Arguments
macro-variable
is either the name of a macro variable or a macro expression that produces a macro
variable name. The name can refer to a new or existing macro variable on a remote
host or server.
remote-session-identifier
is the name of the remote session.
value
is a string or a macro expression that yields a string. Omitting the value produces a
null (0 characters). Leading and trailing blanks are ignored. To make them
significant, enclose the value in the %STR function.
Details
The %SYSLPUT statement is submitted with SAS/CONNECT software from the local
host or client to a remote host or server to create a new macro variable on the remote
host or server, or to modify the value of an existing macro variable on the remote host or
server.
Note: The names of the macro variables on the remote and local hosts must not contain
any leading ampersands.
To assign the value of a macro variable on a remote host to a macro variable on the local
host, use the %SYSRPUT statement.
To use %SYSLPUT, you must have initiated a link between a local SAS session or
client and a remote SAS session or server using the SIGNON command or SIGNON
statement. For more information, see the documentation for SAS/CONNECT software.
%SYSMACDELETE Statement
Deletes a macro definition from the WORK.SASMACR catalog.
Type:
Restriction:
Macro Statement
Allowed in macro definition and open code
Syntax
%SYSMACDELETE macro_name</ option>;
Required Argument
macro_name
the name of a macro or a text expression that produces a macro variable name.
Optional Argument
NOWARN
specifies that no warning diagnostic message should be issued.
%SYSRPUT Statement
319
Details
The %SYSMACDELETE statement deletes the macro definition of the specified macro
from the WORK.SASMACR catalog. If no definition for the macro exists in the
WORK.SASMACR catalog, a WARNING diagnostic message is issued. If the macro is
currently being executed, an ERROR diagnostic message is issued.
%SYSMSTORECLEAR Statement
Closes the stored compiled macro catalog associated with the libref specified in the SASMSTORE= option
and clears the libref.
Type:
Restriction:
See:
Macro statement
Allowed in macro definition and open code
SASMSTORE= system option
Syntax
%SYSMSTORECLEAR;
Details
Use the %SYSMSTORECLEAR statement to close the stored compiled macro catalog
and to clear the previous libref when switching between SASMSTORE= libraries.
Note: If any stored compiled macro from the library specified by the SASMSTORE=
system option is still executing, the following will occur:
%SYSRPUT Statement
Assigns the value of a macro variable on a remote host to a macro variable on the local host.
Type:
Restriction:
Requirement:
See:
Macro statement
Allowed in macro definitions or open code
SAS/CONNECT
SYSERR Automatic Macro Variable on page 200, SYSINFO Automatic Macro
Variable on page 204, and %SYSLPUT Statement on page 317
Syntax
%SYSRPUT local-macro-variable=remote-macro-variable;
320
Chapter 19
Macro Statements
Required Arguments
local-macro-variable
is the name of a macro variable with no leading ampersand or a text expression that
produces the name of a macro variable. This name must be a macro variable stored
on the local host.
remote-macro-variable
is the name of a macro variable with no leading ampersand or a text expression that
produces the name of a macro variable. This name must be a macro variable stored
on a remote host.
Details
The %SYSRPUT statement is submitted with SAS/CONNECT to a remote host to
retrieve the value of a macro variable stored on the remote host. %SYSRPUT assigns
that value to a macro variable on the local host. %SYSRPUT is similar to the %LET
macro statement because it assigns a value to a macro variable. However, %SYSRPUT
assigns a value to a variable on the local host, not on the remote host where the
statement is processed. The %SYSRPUT statement places the macro variable into the
global symbol table in the client session.
Note: The names of the macro variables on the remote and local hosts must not contain
a leading ampersand.
The %SYSRPUT statement is useful for capturing the value of the automatic macro
variable SYSINFO and passing that value to the local host. SYSINFO contains returncode information provided by some SAS procedures. Both the UPLOAD and the
DOWNLOAD procedures of SAS/CONNECT can update the macro variable SYSINFO
and set it to a nonzero value when the procedure terminates due to errors. You can use
%SYSRPUT on the remote host to send the value of the SYSINFO macro variable back
to the local SAS session. Thus, you can submit a job to the remote host and test whether
a PROC UPLOAD or DOWNLOAD step has successfully completed before beginning
another step on either the remote host or the local host.
For details about using %SYSRPUT, see the documentation for SAS/CONNECT
Software.
To create a new macro variable or modify the value of an existing macro variable on a
remote host or server, use the %SYSLPUT macro statement.
%WINDOW Statement
321
%sysrput retcode=&sysinfo;
%mend download;
%download
endrsubmit;
%macro checkit;
%if &retcode = 0 %then %do;
further processing on local host
%end;
%mend checkit;
%checkit
%WINDOW Statement
Defines customized windows.
Type:
Restriction:
See:
Macro statement
Allowed in macro definitions or open code
%DISPLAY Statement on page 287 and %INPUT Statement on page 299
Syntax
%WINDOWwindow-name<window-option-1 <...window-option-n>
group-definition-1 <...group-definition-n>> field-definition-1 <...field-definition-n>;
Required Arguments
window-name
names the window. Window-name must be a SAS name.
window-option-1 <...window-option-n>
specifies the characteristics of the window as a whole. Specify all window options
before any field or group definitions. These window options are available:
COLOR=color
specifies the color of the window background. The default color of the window
and the contents of its fields are both device-dependent. Color can be one of
these:
BLACK
BLUE
BROWN
CYAN
GRAY (or GREY)
GREEN
MAGENTA
ORANGE
322
Chapter 19
Macro Statements
PINK
RED
WHITE
YELLOW
Operating Environment Information
The representation of colors might vary, depending on the display device that
you use. In addition, on some display devices the background color affects
the entire window; on other display devices, it affects only the window
border.
COLUMNS=columns
specifies the number of display columns in the window, including borders. A
window can contain any number of columns and can extend beyond the border of
the display. This feature is useful when you need to display a window on a
device larger than the one on which you developed it. By default, the window
fills all remaining columns in the display.
Operating Environment Information
The number of columns available depends on the type of display device that
you use. Also, the left and right borders each use from 0 to 3 columns on the
display depending on your display device. If you create windows for display
on different types of display devices, ensure that all fields can be displayed in
the narrowest window.
ICOLUMN=column
specifies the initial column within the display at which the window is displayed.
By default, the macro processor begins the window at column 1 of the display.
IROW=row
specifies the initial row (line) within the display at which the window is
displayed. By default, the macro processor begins the window at row 1 of the
display.
KEYS=<<libref.>catalog.>keys-entry
specifies the name of a KEYS catalog entry that contains the function key
definitions for the window. If you omit libref and catalog, SAS uses
SASUSER.PROFILE.keys-entry.
If you omit the KEYS= option, SAS uses the current function key settings
defined in the KEYS window.
MENU=<<libref.>catalog.>pmenu-entry
specifies the name of a menu that you have built with the PMENU procedure. If
you omit libref and catalog, SAS uses SASUSER.PROFILE.pmenu-entry.
ROWS=rows
specifies the number of rows in the window, including borders. A window can
contain any number of rows and can extend beyond the border of the display
device. This feature is useful when you need to display a window on a device
larger than the one on which you developed it. If you omit a number, the window
fills all remaining rows in the display device.
Operating Environment Information
The number of rows available depends on the type of display device that you
use.
group-definition
names a group and defines all fields within a group. The form of group definition is
GROUP=group field-definition <. . . field-definition-n> where group names a group
of fields that you want to display in the window collectively. A window can contain
any number of groups of fields. If you omit the GROUP= option, the window
contains one unnamed group of fields. Group must be a SAS name.
Organizing fields into groups enables you to create a single window with several
possible contents. To refer to a particular group, use window.group.
field-definition
identifies and describes a macro variable or string that you want to display in the
window. A window can contain any number of fields.
You use a field to identify a macro variable value (or constant text) to be displayed,
its position within the window, and its attributes. Enclose constant text in quotation
marks. The position of a field is determined by beginning row and column. The
attributes that you can specify include color, whether you can enter a value into the
field, and characteristics such as highlighting.
The form of a field definition containing a macro variable is
<row> <column> macro-variable<field-length> <options>
The form of a field definition containing constant text is
<row> <column>'text' | text<options>
The elements of a field definition are
row
specifies the row (line) on which the macro variable or constant text is displayed.
Each row specification consists of a pointer control and, usually, a macro
expression that generates a number. These row pointer controls are available:
#macro-expression
specifies the row within the window given by the value of the macro
expression. The macro expression must either be a positive integer or
generate a positive integer.
/ (forward slash)
moves the pointer to column 1 of the next line.
The macro processor evaluates the macro expression when it defines the window,
not when it displays the window. Thus, the row position of a field is fixed when
the field is being displayed.
If you omit row in the first field of a group, the macro processor uses the first
line of the window. If you omit row in a later field specification, the macro
processor continues on the line from the previous field.
The macro processor treats the first usable line of the window as row 1 (that is, it
excludes the border, command line or menu bar, and message line).
Specify either row or column first.
column
specifies the column in which the macro variable or constant text begins. Each
column specification consists of a pointer control and, usually, a macro
expression that generates a number. These column pointer controls are available:
@macro-expression
specifies the column within the window given by the value of the macro
expression. The macro expression must either be a positive integer or
generate a positive integer.
324
Chapter 19
Macro Statements
+macro-expression
moves the pointer the number of columns given by the value of the macro
expression. The macro expression must either be a positive integer or
generate a positive integer.
The macro processor evaluates the macro expression when it defines the window,
not when it displays the window. Thus, the column position of a field is fixed
when the field is being displayed.
The macro processor treats the column after the left border as column 1. If you
omit column, the macro processor uses column 1.
Specify either column or row first.
macro-variable
names a macro variable to be displayed or to receive the value that you enter at
that position. The macro variable must either be a macro variable name (not a
macro variable reference) or it must be a macro expression that generates a
macro variable name.
By default, you can enter or change a macro variable value when the window
containing the value is displayed. To display the value without changes, use the
PROTECT= option.
CAUTION:
Do not overlap fields. Do not let a field overlap another field displayed at
options
can include the following:
ATTR=attribute | (attribute-1 <. . . , attribute-n>) A=attribute | (attribute-1
<. . . , attribute-n>)
controls several display attributes of the field. The display attributes and
combinations of display attributes available depend on the type of display
device that you use.
BLINK
HIGHLIGHT
REV_VIDEO
UNDERLINE
AUTOSKIP=YES | NO AUTO=YES | NO
controls whether the cursor moves to the next unprotected field of the current
window or group when you have entered data in all positions of a field. If
you specify AUTOSKIP=YES, the cursor moves automatically to the next
unprotected field. If you specify AUTOSKIP=NO, the cursor does not move
automatically. The default is AUTOSKIP=YES.
COLOR=color C=color
specifies a color for the field. The default color is device-dependent. Color
can be one of these:
BLACK
BLUE
BROWN
CYAN
GRAY (or GREY)
GREEN
MAGENTA
ORANGE
PINK
WHITE
YELLOW
DISPLAY=YES | NO
determines whether the macro processor displays the characters that you are
entering into a macro variable value as you enter them. If you specify
DISPLAY=YES (the default value), the macro processor displays the
characters as you enter them. If you specify DISPLAY=NO, the macro
processor does not display the characters as you enter them.
DISPLAY=NO is useful for applications that require users to enter
confidential information, such as passwords. Use the DISPLAY= option only
with fields containing macro variables; constant text is displayed
automatically.
PROTECT=YES | NO P=YES | NO
controls whether information can be entered into a field containing a macro
variable. If you specify PROTECT=NO (the default value), you can enter
information. If you specify PROTECT=YES, you cannot enter information
326
Chapter 19
Macro Statements
into a field. Use the PROTECT= option only for fields containing macro
variables; fields containing text are automatically protected.
REQUIRED=YES | NO
determines whether you must enter a value for the macro variable in that
field. If you specify REQUIRED=YES, you must enter a value into that field
in order to remove the display from the window. You cannot enter a null
value into a required field. If you specify REQUIRED=NO (the default
value), you do not have to enter a value in that field in order to remove the
display from the window. Entering a command on the command line of the
window removes the effect of REQUIRED=YES.
Details
Use the %WINDOW statement to define customized windows that are controlled by the
macro processor. These windows have command and message lines. You can use these
windows to display text and accept input. In addition, you can invoke windowing
environment commands, assign function keys, and use a menu generated by the PMENU
facility.
You must define a window before you can display it. The %WINDOW statement
defines macro windows; the %DISPLAY statement displays macro windows. Once
defined, a macro window exists until the end of the SAS session, and you can display a
window or redefine it at any point.
Defining a macro window within a macro definition causes the macro processor to
redefine the window each time the macro executes. If you repeatedly display a window
whose definition does not change, it is more efficient to do one of the following:
define the window in a macro that you execute once rather than in the macro in
which you display it
If a %WINDOW statement contains the name of a new macro variable, the macro
processor creates that variable with the current scope. The %WINDOW statement
creates two automatic macro variables.
SYSCMD
contains the last command from the window's command line that was not recognized
by the windowing environment.
SYSMSG
contains text that you specify to be displayed on the message line.
Note: Windowing environment file management, scrolling, searching, and editing
commands are not available to macro windows.
Examples
Example 1: Creating an Application Welcome Window
This %WINDOW statement creates a window with a single group of fields:
%window welcome color=white
#5 @28 'Welcome to SAS.' attr=highlight
color=blue
#7 @15
"You are executing Release &sysver on &sysday, &sysdate.."
#12 @29 'Press ENTER to continue.';
The WELCOME window fills the entire display device. The window is white, the first
line of text is blue, and the other two lines are black at normal intensity. The
WELCOME window does not require you to input any values. However, you must press
ENTER to remove the display from the window.
Note: Two periods are a needed delimiter for the reference to the macro variables
SYSVER, SYSDAY, and SYSDATE.
328
Chapter 19
Macro Statements
329
Chapter 20
330
Chapter 20
Dictionary
CMDMAC System Option
Controls command-style macro invocation.
Valid in:
PROC OPTIONS
GROUP=
Type:
Default:
Syntax
CMDMAC | NOCMDMAC
Required Arguments
CMDMAC
specifies that the macro processor examine the first word of every windowing
environment command to see whether it is a command-style macro invocation.
Note: When CMDMAC is in effect, SAS searches the macro libraries first and
executes any member it finds with the same name as the first word in the
windowing environment command that was issued. Unexpected results can
occur.
NOCMDMAC
specifies that no check be made for command-style macro invocations. If the macro
processor encounters a command-style macro call when NOCMDMAC is in effect, it
treats the call as a SAS command and produces an error message if the command is
not valid or is not used correctly.
Details
The CMDMAC system option controls whether macros defined as command-style
macros can be invoked with command-style macro calls or if these macros must be
invoked with name-style macro calls. These two examples illustrate command-style and
name-style macro calls, respectively:
When you use CMDMAC, processing time is increased because the macro facility
searches the macros compiled during the current session for a name corresponding to the
first word on the command line. If the MSTORED option is in effect, the libraries
containing compiled stored macros are searched for a name corresponding to that word.
If the MAUTOSOURCE option is in effect, the autocall libraries are searched for a name
corresponding to that word. If the MRECALL system option is also in effect, processing
time can be increased further because the search continues even if a word was not found
in a previous search.
331
Regardless of which option is in effect, you can use a name-style invocation to call any
macro, including command-style macros.
Comparisons
Name-style macros are the more efficient choice for invoking macros because the macro
processor searches only for a macro name corresponding to a word following a percent
sign.
Type:
System option
Default:
NOIMPLMAC
Syntax
IMPLMAC | NOIMPLMAC
Required Arguments
IMPLMAC
specifies that the macro processor examine the first word of every submitted
statement to see whether it is a statement-style macro invocation.
Note: When IMPLMAC is in effect, SAS searches the macro libraries first and
executes any macro it finds with the same name as the first word in the SAS
statement that was submitted. Unexpected results can occur.
NOIMPLMAC
specifies that no check be made for statement-style macro invocations. This is the
default. If the macro processor encounters a statement-style macro call when
NOIMPLMAC is in effect, it treats the call as a SAS statement. SAS produces an
error message if the statement is not valid or if it is not used correctly.
Details
The IMPLMAC system option controls whether macros defined as statement-style
macros can be invoked with statement-style macro calls or if these macros must be
invoked with name-style macro calls. These examples illustrate statement-style and
name-style macro calls, respectively:
macro-name parameter-value-1
%macro-name(parameter-value-1, parameter-value-2)
parameter-value-2;
When you use IMPLMAC, processing time is increased because SAS searches the
macros compiled during the current session for a name corresponding to the first word of
each SAS statement. If the MSTORED option is in effect, the libraries containing
compiled stored macros are searched for a name corresponding to that word. If the
MAUTOSOURCE option is in effect, the autocall libraries are searched for a name
332
Chapter 20
corresponding to that word. If the MRECALL system option is also in effect, processing
time can be increased further because the search continues even if a word was not found
in a previous search.
Regardless of which option is in effect, you can call any macro with a name-style
invocation, including statement-style macros.
Note: If a member in an autocall library or stored compiled macro catalog has the same
name as an existing windowing environment command, SAS searches for the macro
first if CMDMAC is in effect. Unexpected results can occur.
Comparisons
Name-style macros are a more efficient choice to use when you invoke macros because
the macro processor searches only for the macro name that corresponds to a word that
follows a percent sign.
Syntax
MACRO | NOMACRO
Required Arguments
MACRO
enables SAS to recognize and process macro language statements, macro calls, and
macro variable references.
NOMACRO
prevents SAS from recognizing and processing macro language statements, macro
calls, and macro variable references. The item generally is not recognized, and an
error message is issued. If the macro facility is not used in a job, a small performance
gain can be made by setting NOMACRO because there is no overhead of checking
for macros or macro variables.
Type:
Default:
System option
NOMAUTOCOMPLOC
Syntax
MAUTOCOMPLOC|NOMAUTOCOMPLOC
Required Arguments
MAUTOCOMPLOC
displays the autocall macro source location in the SAS log when the autocall macro
is compiled.
NOMAUTOCOMPLOC
prevents the autocall macro source location from being written to the SAS log.
Details
The display created by the MAUTOCOMPLOC system option of the autocall macro
source location in the log is not affected by either the MAUTOLOCDISPLAY or the
MLOGIC system options.
Syntax
MAUTOLOCDISPLAY | NOMAUTOLOCDISPLAY
Required Arguments
MAUTOLOCDISPLAY
enables MACRO to display the autocall macro source location in the log when the
autocall macro is invoked.
NOMAUTOLOCDISPLAY
prevents the autocall macro source location from being displayed in the log when the
autocall macro is invoked. NOMAUTOLOCDISPLAY is the default.
Details
When both MAUTOLOCDISPLAY and MLOGIC options are set, only the MLOGIC
listing of the autocall source location is displayed.
334
Chapter 20
Syntax
MAUTOLOCINDES|NOMAUTOLOCINDES
Required Arguments
MAUTOLOCINDES
causes the macro processor to prepend the full pathname of the autocall macro
source file to the description field of the catalog entry of the compiled autocall macro
definition in the WORK.SASMACR catalog.
NOMAUTOLOCINDES
no changes to the description field autocall macro definitions in the
WORK.SASMACR catalog.
Details
Use MAUTOLOCINDES to help determine where autocall macro definition source code
is located. The following is an example that shows the output that contains the full
pathname:
options mautolocindes;
%put %lowcase(THIS);
this
proc catalog cat=work.sasmacr;contents;run;
Contents of Catalog WORK.SASMACR
# Name
Type
Create Date
C:\SASv9\sas\dev\
mva-v930\shell\auto\
Syntax
MAUTOSOURCE | NOMAUTOSOURCE
Required Arguments
MAUTOSOURCE
causes the macro processor to search the autocall libraries for a member with the
requested name when a macro name is not found in the WORK library.
NOMAUTOSOURCE
prevents the macro processor from searching the autocall libraries when a macro
name is not found in the WORK library.
Details
When the macro facility searches for macros, it searches first for macros compiled in the
current SAS session. If the MSTORED option is in effect, the macro facility next
searches the libraries containing compiled stored macros. If the MAUTOSOURCE
option is in effect, the macro facility next searches the autocall libraries.
Syntax
MCOMPILENOTE=<NONE | NOAUTOCALL | ALL>
336
Chapter 20
Required Arguments
NONE
prevents any NOTE from being written to the log.
NOAUTOCALL
prevents any NOTE from being written to the log for AUTOCALL macros, but does
issue a NOTE to the log upon the completion of the compilation of any other macro.
ALL
issues a NOTE to the log. The note contains the size and number of instructions upon
the completion of the compilation of any macro.
Details
The NOTE confirms that the compilation of the macro was completed. When the option
is on and the NOTE is issued, the compiled version of the macro is available for
execution. A macro can successfully compile, but still contain errors or warnings that
will cause the macro to not execute as you intended.
Syntax
MCOMPILE | NOMCOMPILE
Required Arguments
MCOMPILE
allows new macro definitions.
NOMCOMPILE
disallows new macro definitions.
Details
The MCOMPILE system option allows new definitions of macros.
The NOMCOMPILE system option prevents new definitions of macros. It does not
prevent the use of existing stored compiled or autocall macros.
Syntax
MCOVERAGE|NOMCOVERAGE
Required Arguments
MCOVERAGE
enables the generation of coverage analysis data.
NOMCOVERAGE
prevents the generation of coverage analysis data.
Details
MCOVERAGE system option controls the generation of coverage analysis data, which
is information needed to ensure proper testing of SAS Solutions products before their
release.
The format of the coverage analysis data is a space delimited flat text file that contains
three types of records. Each record begins with a numeric record type. The line numbers
in the data are relative line numbers based on the %MACRO keyword used to define the
macro. You must use the MCOVERAGELOC= system option to specify the location of
the coverage analysis data file. See MCOVERAGELOC= System Option on page
340.
338
Chapter 20
Note: Because nested macro definitions are stored as model text with line breaks
collapsed, it is recommended that nested macro definitions not be used in macro
definitions that will later be analyzed for execution coverage.
Below are explanations for each of the three record types.
Record type 1:
1 n n macroname
1
record type
n
macro name
Record type 1 indicates the beginning of the execution of a macro. Record type 1
appears once for each invocation of a macro.
Record type 2:
2 n n macroname
2
record type
n
macro name
Record type 2 indicates the lines of a macro that have executed. A single line of a macro
might cause more than one record to be generated.
Record type 3:
3 n n macroname
3
record type
n
macro name
Record type 3 indicates which lines of the macro cannot be executed because no code
was generated from them. These lines might be either commentary lines or lines that
cause no macro code to be generated.
The following is a sample program log:
Sample Program Log:
NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software 9.3 (TS1B0)
platform.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
*/
%macro
foo (
arg,
arg2
=
This is the default value of arg2)
;
/* This is a number of lines of comments
/* which presumably will help the maintainer
/* of this macro to know what to do to keep
/* this silly piece of code current
%if &arg %then %do;
data _null_;
x=1;
%end;
%* this is a macro comment statement
that also can be used to document features
and other stuff about the macro;
%else
%do;
DATA _NULL_;
y=1;
%end;
run;
*/
*/
*/
*/
%mend
340
Chapter 20
Syntax
MCOVERAGELOC=fileref|file_specification
Required Argument
fileref|file_specification
a SAS fileref or an external file specification enclosed in quotation marks.
Details
This MCOVERAGELOC = system option specifies where the coverage analysis is to be
written. The option takes either an external file specification enclosed in quotation marks
or a SAS fileref.
Syntax
MERROR | NOMERROR
Required Arguments
MERROR
issues the following warning message when the macro processor cannot match a
macro reference to a compiled macro:
WARNING: Apparent invocation of macro %text not resolved.
NOMERROR
issues no warning messages when the macro processor cannot match a macro
reference to a compiled macro.
Details
Several conditions can prevent a macro reference from resolving. These conditions
appear when
If your program contains a percent sign in a string that could be mistaken for a macro
keyword, specify NOMERROR.
Syntax
MEXECNOTE | NOMEXECNOTE
Required Arguments
MEXECNOTE
displays the macro execution information in the log when the macro is invoked.
NOMEXECNOTE
does not display the macro execution information in the log when the macro is
invoked.
Details
The MEXECNOTE option controls the generation of a NOTE in the SAS log that
indicates the macro execution mode.
342
Chapter 20
Syntax
MEXECSIZE=n | nK | nM | nG | nT | hexX | MIN | MAX
Required Arguments
n
specifies the maximum size macro to be executed in memory available in bytes.
nK
specifies the maximum size macro to be executed in memory available in kilobytes.
nM
specifies the maximum size macro to be executed in memory available in megabytes.
nG
specifies the maximum size macro to be executed in memory available in gigabytes.
nT
specifies the maximum size macro to be executed in memory available in terabytes.
MIN
specifies the minimum size macro to be executed in memory. Minimum value is 0.
MAX
specifies the maximum size macro to be executed in memory. Maximum value is
hexX
specifies the maximum size macro to be executed in memory by a hexadecimal
number followed by an X.
Details
Use the MEXECSIZE option to control the maximum size macro that will be executed
in memory as opposed to being executed from a file. The MEXECSIZE option value is
the compiled size of the macro. Memory is allocated only when the macro is executed.
After the macro completes, the memory is released. If memory is not available to
execute the macro, an out-of-memory message is written to the SAS log. Use the
MCOMPILENOTE option to write to the SAS log the size of the compiled macro. The
MEMSIZE option does not affect the MEXECSIZE option.
Syntax
MFILE | NOMFILE
Required Arguments
MFILE
routes output produced by the MPRINT option to an external file. This option is
useful for debugging.
NOMFILE
does not route MPRINT output to an external file.
Details
The MPRINT option must also be in effect to use MFILE, and an external file must be
assigned the fileref MPRINT. Macro-generated code that is displayed by the MPRINT
option in the SAS log during macro execution is written to the external file referenced by
the fileref MPRINT.
If MPRINT is not assigned as a fileref or if the file cannot be accessed, warnings are
written to the SAS log and MFILE is set to off. To use the feature again, you must
specify MFILE again and assign the fileref MPRINT to a file that can be accessed.
344
Chapter 20
Syntax
MINDELIMITER=<option>
Required Argument
option
is a character enclosed in double or single quotation marks. The character will be
used as the delimiter for the macro IN operator. Here is an example:double quotation
marks
mindelimiter=,;
Details
The option value is retained in original case and can have a maximum length of one
character. The default value of the MINDELIMITER option is a blank.
You can use the # character instead of IN.
Note: When the IN or # operator is used in a macro, the delimiter that is used at the
execution time of the macro is the value of the MINDELIMITER option at the time
of the compilation of the macro. A specific delimiter value for use during the
execution of the macro other than the current value of the MINDELIMITER system
option might be specified on the macro definition statement:
%macro macroname / mindelimiter=',';
Comparisons
The following is an example using a specified delimiter in an IN operator:
%put %eval(a in d,e,f,a,b,c);
%put %eval(a in d e f a b c);
option mindelimiter=',';
%put %eval(a in d,e,f,a,b,c);
%put %eval(a in d e f a b c);
/* should print 0 */
/* should print 1 */
/* should print 1 */
/* should print 0 */
Syntax
MINOPERATOR | NOMINOPERATOR
Required Arguments
MINOPERATOR
causes the macro processor to recognize and evaluate both the mnemonic operator
IN or the special character # as a logical operator in expressions.
NOMINOPERATOR
causes the macro processor to recognize both the mnemonic operator IN and the
special character # as regular characters.
Details
Use the MINOPERATOR system option or in the %MACRO statement if you want to
use the IN (#) as operators in expressions:
options minoperator;
The macro IN operator is similar to the DATA step IN operator, but not identical. The
following is a list of differences:
The default delimiter for list elements is a blank. For more information, see
MINDELIMITER= System Option on page 343.
346
Chapter 20
or
%put %eval(a IN); /*Missing second operand. */
Whether the first or second operand contains a null value, the same error is written to
the SAS log:
ERROR: Operand missing for IN operator in argument to %EVAL function.
The following example uses the macro IN operator to search a character string:
%if &state in (NY NJ PA) %then %let ®ion = %eval(®ion + 1);
For more information, see Defining Arithmetic and Logical Expressions on page 72.
Syntax
MLOGIC | NOMLOGIC
Required Arguments
MLOGIC
causes the macro processor to trace its execution and to write the trace information to
the SAS log. This option is a useful debugging tool.
NOMLOGIC
does not trace execution. Use this option unless you are debugging macros.
Details
Use MLOGIC to debug macros. Each line generated by the MLOGIC option is
identified with the prefix MLOGIC(macro-name):. If MLOGIC is in effect and the
macro processor encounters a macro invocation, the macro processor displays messages
that identify the following:
For more information about macro debugging, see Macro Facility Error Messages and
Debugging on page 120.
When this program executes, this MLOGIC output is written to the SAS log:
MLOGIC(RUNPLOT):
MLOGIC(RUNPLOT):
MLOGIC(RUNPLOT):
MLOGIC(MKTITLE):
MLOGIC(MKTITLE):
MLOGIC(MKTITLE):
MLOGIC(MKTITLE):
MLOGIC(RUNPLOT):
Beginning execution.
Parameter DS has value sasuser.houses
%IF condition %sysprod(graph)=1 is TRUE
Beginning execution.
Parameter PROC has value gplot
Parameter DATA has value sasuser.houses
Ending execution.
Ending execution.
348
Chapter 20
See:
Syntax
MLOGICNEST | NOMLOGICNEST
Required Arguments
MLOGICNEST
enables the macro nesting information to be displayed in the MLOGIC output in the
SAS log.
NOMLOGICNEST
prevents the macro nesting information from being displayed in the MLOGIC output
in the SAS log.
Details
MLOGICNEST enables the macro nesting information to be written to the SAS log in
the MLOGIC output.
The setting of MLOGICNEST does not affect the output of any currently executing
macro.
The setting of MLOGICNEST does not imply the setting of MLOGIC. You must set
both MLOGIC and MLOGICNEST in order for output (with nesting information) to be
written to the SAS log.
Here is the MLOGIC output in the SAS log using the MLOGICNEST option:
MLOGIC(OUTER): Beginning execution.
MLOGIC(OUTER): %PUT THIS IS OUTER
THIS IS OUTER
MLOGIC(OUTER.INNER): Beginning execution.
MLOGIC(OUTER.INNER): %PUT THIS IS INNER
THIS IS INNER
MLOGIC(OUTER.INNER.INRMOST): Beginning execution.
MLOGIC(OUTER.INNER.INRMOST): %PUT THIS IS INRMOST
THIS IS INRMOST
MLOGIC(OUTER.INNER.INRMOST): Ending execution.
Here is the output in the SAS log when you use only the NOMLOGICNEST option:
MLOGIC(OUTER): Beginning execution.
MLOGIC(OUTER): %PUT THIS IS OUTER
THIS IS OUTER
MLOGIC(INNER): Beginning execution.
MLOGIC(INNER): %PUT THIS IS INNER
THIS IS INNER
MLOGIC(INRMOST): Beginning execution.
MLOGIC(INRMOST): %PUT THIS IS INRMOST
THIS IS INRMOST
MLOGIC(INRMOST): Ending execution.
MLOGIC(INNER): Ending execution.
MLOGIC(OUTER): Ending execution.
Syntax
MPRINT | NOMPRINT
349
350
Chapter 20
Required Arguments
MPRINT
displays the SAS statements that are generated by macro execution. The SAS
statements are useful for debugging macros.
NOMPRINT
does not display SAS statements that are generated by macro execution.
Details
The MPRINT option displays the text generated by macro execution. Each SAS
statement begins a new line. Each line of MPRINT output is identified with the prefix
MPRINT(macro-name):, to identify the macro that generates the statement. Tokens that
are separated by multiple spaces are printed with one intervening space.
You can direct MPRINT output to an external file by also using the MFILE option and
assigning the fileref MPRINT to that file. For more information, see MFILE System
Option on page 343.
Examples
Example 1: Tracing Generation of SAS Statements
In this example, MPRINT traces the SAS statements that are generated when the macros
MKTITLE and RUNPLOT execute:
%macro mktitle(proc,data);
title "%upcase(&proc) of %upcase(&data)";
%mend mktitle;
%macro runplot(ds);
%if %sysprod(graph)=1 %then
%do;
%mktitle (gplot,&ds)
proc gplot data=&ds;
plot style*price
/ haxis=0 to 150000 by 50000;
run;
quit;
%end;
%else
%do;
%mktitle (plot,&ds)
proc plot data=&ds;
plot style*price;
run;
quit;
%end;
%mend runplot;
options mprint;
%runplot(sasuser.houses)
When this program executes, this MPRINT output is written to the SAS log:
MPRINT(MKTITLE):
MPRINT(RUNPLOT):
MPRINT(RUNPLOT):
RUN;
QUIT;
Syntax
MPRINTNEST | NOMPRINTNEST
Required Arguments
MPRINTNEST
enables the macro nesting information to be displayed in the MPRINT output in the
SAS log.
NOMPRINTNEST
prevents the macro nesting information from being displayed in the MPRINT output
in the SAS log.
Details
MPRINTNEST enables the macro nesting information to be written to the SAS log in
the MPRINT output. The MPRINTNEST output has no effect on the MPRINT output
that is sent to an external file. For more information, see MFILE System Option.
The setting of MPRINTNEST does not imply the setting of MPRINT. You must set both
MPRINT and MPRINTNEST in order for output (with the nesting information) to be
written to the SAS log.
352
Chapter 20
Here is the output written to the SAS log using both the MPRINT option and the
MPRINTNEST option:
MPRINT(OUTER):
data _null_;
MPRINT(OUTER.INNER):
put
MPRINT(OUTER.INNER.INRMOST):
'This is the text of the PUT statement'
MPRINT(OUTER.INNER): ;
MPRINT(OUTER):
run;
This is the text of the PUT statement
NOTE: DATA statement used (Total process time):
real time
0.10 seconds
cpu time
0.06 seconds
Here is the output written to the SAS log using the NOMPRINTNEST option:
MPRINT(OUTER):
data _null_;
MPRINT(INNER):
put
MPRINT(INRMOST):
'This is the text of the PUT statement'
MPRINT(INNER): ;
MPRINT(OUTER):
run;
This is the text of the PUT statement
NOTE: DATA statement used (Total process time):
real time
0.00 seconds
cpu time
0.01 seconds
Type:
System option
Default:
NOMRECALL
Syntax
MRECALL | NOMRECALL
Required Arguments
MRECALL
searches the autocall libraries for an undefined macro name each time an attempt is
made to invoke the macro. It is inefficient to search the autocall libraries repeatedly
for an undefined macro. Generally, use this option when you are developing or
debugging programs that call autocall macros.
NOMRECALL
searches the autocall libraries only once for a requested macro name.
Details
Use the MRECALL option primarily for
Syntax
MREPLACE | NOMREPLACE
Required Arguments
MREPLACE
enables you to redefine existing macro definitions that are stored in a catalog in the
WORK library.
NOMREPLACE
prevents you from redefining existing macro definitions that are stored in a catalog in
the WORK library.
354
Chapter 20
Details
The MREPLACE system option enables you to overwrite existing macros if the names
are the same.
The NOMREPLACE system option prevents you from overwriting a macro even if a
macro with the same name has already been compiled.
Type:
System option
Default:
NOMSTORED
Syntax
MSTORED | NOMSTORED
Required Arguments
MSTORED
searches for stored compiled macros in a catalog in the SAS library referenced by the
SASMSTORE= option.
NOMSTORED
does not search for compiled macros.
Details
Regardless of the setting of MSTORED, the macro facility first searches for macros
compiled in the current SAS session. If the MSTORED option is in effect, the macro
facility next searches the libraries containing compiled stored macros. If the
MAUTOSOURCE option is in effect, the macro facility next searches the autocall
libraries. Then, the macro facility searches the SASMACR catalog in the SASHELP
library.
Syntax
MSYMTABMAX= n | nK | nM | nG | MAX
Required Arguments
n
specifies the maximum memory available in bytes.
nK
specifies the maximum memory available in kilobytes.
nM
specifies the maximum memory available in megabytes.
nG
specifies the maximum memory available in gigabytes.
MAX
specifies the maximum memory of 65534.
Details
Once the maximum value is reached, additional macro variables are written out to disk.
The value that you specify with the MSYMTABMAX= system option can range from 0
to the largest nonnegative integer representable on your operating environment. The
default values are host dependent. A value of 0 causes all macro symbol tables to be
written to disk.
The value of MSYMTABMAX= can affect system performance. If this option is set too
low and the application frequently reaches the specified memory limit, then disk I/O
increases. If this option is set too high (on some operating environments) and the
application frequently reaches the specified memory limit, then less memory is available
for the application, and CPU usage increases. Before you specify the value for
production jobs, run tests to determine the optimum value.
Syntax
MVARSIZE= n | nK | nM | nG | MAX
Required Arguments
n
specifies the maximum memory available in bytes.
nK
specifies the maximum memory available in kilobytes.
356
Chapter 20
nM
specifies the maximum memory available in megabytes.
nG
specifies the maximum memory available in gigabytes.
MAX
specifies the maximum memory of 65534.
Details
If the memory required for a macro variable value is larger than the MVARSIZE= value,
the variable is written to a temporary catalog on disk. The macro variable name is used
as the member name, and all members have the type MSYMTAB.
The value that you specify with the MVARSIZE= system option can range from 0 to
65534. A value of 0 causes all macro variable values to be written to disk.
The value of MVARSIZE= can affect system performance. If this option is set too low
and the application frequently creates macro variables larger than the limit, then disk I/O
increases. Before you specify the value for production jobs, run tests to determine the
optimum value.
Note: The MVARSIZE= option has no affect on the maximum length of the value of the
macro variable. For more information, see Macro Variables on page 19.
Syntax
SASAUTOS= library-specification |
(library-specification-1 . . . , library-specification-n)
Required Arguments
library-specification
identifies a location that contains library members that contain a SAS macro
definition. A location can be a SAS fileref or a host-specific location name enclosed
in quotation marks. Each member contains a SAS macro definition.
(library-specification-1 . . . , library-specification-n)
identifies two or more locations that contain library members that contain a SAS
macro definition. A location can be a SAS fileref or a host-specific location name
enclosed in quotation marks. When you specify two or more autocall libraries,
enclose the specifications in parentheses and separate them with either a comma or a
blank space.
357
Details
When SAS searches for an autocall macro definition, it opens and searches each location
in the same order that it is specified in the SASAUTOS option. If SAS cannot open any
specified location, it generates a warning message and sets the NOMAUTOSOURCE
system option on. To use the autocall facility again in the same SAS session, you must
specify the MAUTOSOURCE option again.
Operating Environment Information
You specify a source library by using a fileref or by enclosing the host-specific
location name in quotation marks. A valid library specification and its syntax are
host specific. Although the syntax is generally consistent with the command-line
syntax of your operating environment, it might include additional or alternate
punctuation. For details, see the SAS documentation for your operating environment.
z/OS Specifics
You can use the APPEND or INSERT system options to add additional libraryspecification. For details, see the documentation for the APPEND and INSERT
system options under UNIX and z/OS.
Syntax
SASMSTORE=libref
Required Argument
libref
specifies the libref of a SAS library that contains, or will contain, a catalog of stored
compiled SAS macros. This libref cannot be WORK.
Type:
System option
Alias:
SERR | NOSERR
358
Chapter 20
Default:
SERROR
Syntax
SERROR | NOSERROR
Required Arguments
SERROR
issues a warning message when the macro processor cannot match a macro variable
reference to an existing macro variable.
NOSERROR
issues no warning messages when the macro processor cannot match a macro
variable reference to an existing macro variable.
Details
Several conditions can occur that prevent a macro variable reference from resolving.
These conditions appear when one or more of the following is true:
If your program uses a text string containing ampersands and you want to suppress the
warnings, specify NOSERROR.
Type:
System option
Alias:
SGEN | NOSGEN
Default:
NOSYMBOLGEN
See:
Syntax
SYMBOLGEN | NOSYMBOLGEN
Required Arguments
SYMBOLGEN
displays the results of resolving macro variable references. This option is useful for
debugging.
NOSYMBOLGEN
does not display results of resolving macro variable references.
Details
SYMBOLGEN displays the results in this form:
SYMBOLGEN: Macro variable name resolves to value
When this program executes, this SYMBOLGEN output is written to the SAS log:
SYMBOLGEN:
SYMBOLGEN:
SYMBOLGEN:
SYMBOLGEN:
Macro
Macro
Macro
Macro
variable
variable
variable
variable
DS resolves to sasuser.houses
PROC resolves to gplot
DATA resolves to sasuser.houses
DS resolves to sasuser.houses
360
Chapter 20
Syntax
SYSPARM='character-string'
Required Argument
character-string
is a character string, enclosed in quotation marks, with a maximum length of 200.
Details
The character string specified can be accessed in a SAS DATA step by the SYSPARM()
function or anywhere in a SAS program by using the automatic macro variable reference
&SYSPARM.
Operating Environment Information
The syntax shown here applies to the OPTIONS statement. At invocation, on the
command line, or in a configuration file, the syntax is host specific. For details, see
the SAS documentation for your operating environment.
361
Part 3
Appendices
Appendix 1
Reserved Words in the Macro Facility . . . . . . . . . . . . . . . . . . . . . . . . . . . 363
Appendix 2
SAS Tokens . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 365
Appendix 3
Syntax for Selected Functions Used with the %SYSFUNC Function .
367
362
363
Appendix 1
Do not use a reserved word as the name of a macro, a macro variable, or a macro
label. Reserved words include words reserved by both the macro facility and the
operating environment. When a macro name is a macro facility reserved word, the
macro processor issues a warning, and the macro is neither compiled nor available
for execution. The macro facility reserves the words listed under Reserved Words
on page 363 for internal use.
Do not prefix the name of a macro language element with SYS because SAS
reserves the SYS prefix for the names of macro language elements supplied with
SAS software.
Do not prefix macro variables names with SYS, AF, or DMS in order to avoid macro
name conflicts.
Reserved Words
The following table lists the reserved words for the macro facility.
Table A1.1 Macro Facility Reserved Words
ABEND
END
LENGTH
QKUPCASE
SYSEVALF
ABORT
EVAL
LET
QSCAN
SYSEXEC
ACT
FILE
LIST
QSUBSTR
SYSFUNC
ACTIVATE
GLOBAL
LISTM
QSYSFUNC
SYSGET
364
Appendix 1
BQUOTE
GO
LOCAL
QUOTE
SYSRPUT
BY
GOTO
MACRO
QUPCASE
THEN
CLEAR
IF
MEND
RESOLVE
TO
CLOSE
INC
PAUSE
RETURN
TSO
CMS
INCLUDE
NRSTR
RUN
UNQUOTE
COMANDR
INDEX
ON
SAVE
UNSTR
COPY
INFILE
OPEN
SCAN
UNTIL
DEACT
INPUT
PUT
STOP
UPCASE
DEL
KCMPRES
NRBQUOTE
STR
WHILE
DELETE
KINDEX
NRQUOTE
SYSCALL
WINDOW
DISPLAY
KLEFT
METASYM
SUBSTR
DMIDSPLY
KLENGTH
QKCMPRES
SUPERQ
DMISPLIT
KSCAN
QKLEFT
SYMDEL
DO
KSUBSTR
QKSCAN
SYMEXIST
EDIT
KTRIM
QKSUBSTR
SYMGLOBL
ELSE
KUPCASE
QKTRIM
SYMLOCAL
365
Appendix 2
SAS Tokens
SAS Tokens
When SAS processes a program, a component called the word scanner reads the
program, character by character, and groups the characters into words. These words are
referred to as tokens.
List of Tokens
SAS recognizes four general types of tokens:
Literal
One or more characters enclosed in single or double quotation marks. Examples of
literals include the following:
Table A2.1
Literals
'CARY'
"2008"
'Dr. Kemple-Long'
'<entry align="center">'
Name
One or more characters beginning with a letter or an underscore. Other characters
can be letters, underscores, and digits.
Table A2.2
Names
data
_test
linesleft
f25
univariate
otherwise
366
Appendix 2
SAS Tokens
year_2008
descending
Number
A numeric value. Number tokens include the following:
integers. Integers are numbers that do not contain a decimal point or an exponent.
Examples of integers include 1, 72, and 5000. SAS date, time, and datetime
constants such as '24AUG2008'D are integers, as are hexadecimal constants such
as 0C4X.
Special character
Any character that is not a letter, number, or underscore. The following characters
are some special characters:
=+%&;()#
The maximum length of any type of token is 32,767 characters. A token ends when the
tokenizer encounters one of the following situations:
in a literal token, a quotation mark of the same type that started the token. There is an
exception. A quotation mark followed by a quotation mark of the same type is
interpreted as a single quotation mark that becomes part of the literal token. For
example, in 'Mary''s', the fourth quotation mark terminates the literal token. The
second and third quotation marks are interpreted as a single character, which is
included in the literal token.
367
Appendix 3
Function
ATTRC
%SYSFUNC(ATTRC(data-set-id,attr-name))
ATTRN
Returns the value of a numeric attribute for specified SAS data set.
%SYSFUNC(ATTRN(data-set_id,attr-name))
CEXIST
CUROBS
%SYSFUNC(CUROBS(data-set-id))
DCLOSE
Closes a directory.%SYSFUNC(DCLOSE(directory-id))
368
Appendix 3
DINFO
%SYSFUNC(DINFO(directory-id,info-items))
DNUM
%SYSFUNC(DNUM(directory-id))
DOPEN
DOPTNAME
Opens a directory.%SYSFUNC(DOPEN(fileref))
Returns a specified directory attribute.
%SYSFUNC(DOPTNAME(directory-id,nval))
DOPTNUM
%SYSFUNC(DOPTNUM(directory-id))
DREAD
%SYSFUNC(DREAD(directory-id,nval))
DROPNOTE
%SYSFUNC(DROPNOTE(data-set-id|file-id,noteid))
DSNAME
Returns the data set name associated with a data set identifier.
%SYSFUNC(DSNAME(<data-set-id>))
EXIST
%SYSFUNC(EXIST(member-name<,member-type>))
FAPPEND
%SYSFUNC(FAPPEND(file-id<,cc>))
FCLOSE
%SYSFUNC(FCLOSE(file-id))
FCOL
Returns the current column position in the File Data Buffer (FDB)
%SYSFUNC(FCOL(file-id))
FDELETE
FETCH
Reads the next nondeleted observation from a SAS data set into the Data
Set Data Vector (DDV). %SYSFUNC(FETCH(data-set-
id<,NOSET>))
FETCHOBS
Reads a specified observation from a SAS data set into the DDV.
%SYSFUNC(FETCHOBS(data-set-id,obsnumber<,options>))
FEXIST
%SYSFUNC(FEXIST(fileref))
FGET
id,cval<,length>))
FILEEXIST
369
%SYSFUNC(FILEEXIST(file-name))
FILENAME
name<,device<,host-options<,dir-ref>>>))
FILEREF
Verifies that a fileref has been assigned for the current SAS session.
%SYSFUNC(FILEREF(fileref))
FINFO
%SYSFUNC(FINFO(file-id,info-item))
FNOTE
id))
FOPEN
mode<,record-length<,record-format>>>))
FOPTNAME
%SYSFUNC(FOPTNAME(file-id,nval))
FOPTNUM
%SYSFUNC(FOPTNUM(file-id))
FPOINT
%SYSFUNC(FPOINT(file-id,note-id))
FPOS
%SYSFUNC(FPOS(file-id,nval))
FPUT
FREAD
Moves data to the FDB of an external file starting at the current column
position. %SYSFUNC(FPUT(file-id,cval))
Reads a record from an external file into the FDB.
%SYSFUNC(FREAD(file-id))
FREWIND
%SYSFUNC(FREWIND(file-id))
FRLEN
FSEP
Returns the size of the last record read, or the current record size for a
file opened for output. %SYSFUNC(FRLEN(file-id))
Sets the token delimiters for the FGET function.
%SYSFUNC(FSEP(file-id,cval))
FWRITE
id<,cc>))
GETOPTION
%SYSFUNC(GETOPTION(option-name<,reportingoptions<,...>>))
370
Appendix 3
GETVARC
Assigns the value of a SAS data set variable to a character DATA step
or macro variable. %SYSFUNC(GETVARC(data-set-id,var-
num))
GETVARN
Assigns the value of a SAS data set variable to a numeric DATA step or
macro variable. %SYSFUNC(GETVARN(data-set-id,var-
num))
LIBNAME
%SYSFUNC(LIBNAME(libref<,SAS-datalibrary<,engine<,options>>>))
LIBREF
%SYSFUNC(LIBREF(libref))
MOPEN
NOTE
%SYSFUNC(NOTE(data-set-id))
OPEN
name<,mode>>))
PATHNAME
%SYSFUNC(PATHNAME(fileref))
POINT
%SYSFUNC(POINT(data-set-id,note-id))
REWIND
Positions the data set pointer to the beginning of a SAS data set.
%SYSFUNC(REWIND(data-set-id))
SPEDIS
%SYSFUNC(SPEDIS(query,keyword))
SYSGET
%SYSFUNC(sysget(host-variable))
SYSMSG
Returns the error or warning message produced by the last function that
attempted to access a data set or external file.
%SYSFUNC(SYSMSG())
SYSRC
VARFMT
Returns the system error number or exit status of the entry most recently
called. %SYSFUNC(SYSRC())
Returns the format assigned to a data set variable.
%SYSFUNC(VARFMT(data-set-id,var-num))
VARINFMT
%SYSFUNC(VARINFMT(data-set-id,var-num))
VARLABEL
%SYSFUNC(VARLABEL(data-set-id,var-num))
VARLEN
%SYSFUNC(VARLEN(data-set-id,var-num))
VARNAME
%SYSFUNC(VARNAME(data-set-id,var-num))
VARNUM
%SYSFUNC(VARNUM(data-set-id,var-name))
VARTYPE
%SYSFUNC(VARTYPE(data-set-id,var-num))
371
372
Appendix 3
373
Glossary
arithmetic expression
a type of macro expression that consists of a sequence of arithmetic operators and
operands. An arithmetic expression returns a numeric value when it is executed.
autocall facility
a feature of SAS that enables you to store the source statements that define a macro
and to invoke the macro as needed, without having to include the definition in your
program.
autocall macro
a macro whose uncompiled source code and text are stored in an autocall macro
library. Unlike a stored compiled macro, an autocall macro is compiled before
execution the first time it is called.
command-style macro
a macro that is defined with the CMD option in the %MACRO statement.
constant text
the character strings that are stored as part of a macro or as a macro variable's value
in open code, from which the macro processor generates text to be used as SAS
statements, display manager commands, or other macro program statements.
Constant text is also called model text.
dummy macro
a macro that the macro processor compiles but does not store.
global macro variable
a macro variable that can be referenced in either global or local scope in a SAS
program, except where there is a local macro variable that has the same name. A
global macro variable exists until the end of the session or program.
global scope
in SAS macro programming, indicates broad context boundaries for referencing
global macro variables; that is, anywhere within the current SAS session or SAS
batch program.
input stack
the most recently read line of input from a SAS program and any text generated by
the macro processor that is awaiting processing by the word scanner.
374
Glossary
keyword parameter
a type of macro parameter that is identified by its name, followed by an equals sign.
Multiple keyword parameters can be provided in any order, and must follow any
positional parameters.
local macro variable
a macro variable that is available only within the macro in which it was created and
within macros that are invoked from within that macro. A local macro variable
ceases to exist when the macro that created it stops executing.
local scope
in SAS macro programming, indicates narrowed context boundaries for referencing
local macro variables; that is, limited to the current macro.
logical expression
a type of macro expression that consists of a sequence of logical operators and
operands. A logical expression returns a value of either true or false when it is
executed.
macro
a SAS catalog entry that contains a group of compiled program statements and stored
text.
macro call
within a SAS program, a statement that invokes (or calls) a stored compiled macro
program. You use the syntax %<user-sup-val>macro-name</user-sup-val>; to call a
macro.
macro compilation
the process of converting a macro definition from the statements that you enter to a
form that is ready for the macro processor to execute. The compiled macro is then
stored for later use in the SAS program or session.
macro execution
the process of following the instructions that are given by compiled macro program
statements in order to generate text, to write messages to the SAS log, to accept
input, to create or change the values of macro variables, or to perform other
activities. The generated text can be a SAS statement, a SAS command, or another
macro program statement.
macro expression
any valid combination of symbols that returns a value when it is executed. The three
types of macro expressions are text, logical, and arithmetic. A text expression
generates text when it is resolved (executed) and can consist of any combination of
text, macro variables, macro functions, and macro calls. A logical expression
consists of logical operators and operands and returns a value of either true or false.
An arithmetic expression consists of arithmetic operators and operands and returns a
numeric value.
macro facility
a component of Base SAS software that you can use for extending and customizing
SAS programs and for reducing the amount of text that must be entered in order to
perform common tasks. The macro facility consists of the macro processor and the
macro programming language.
Glossary 375
macro function
a function that is defined by the macro facility. Each macro function processes one or
more arguments and produces a result.
macro invocation
another term for macro call.
macro language
the programming language that is used to communicate with the macro processor.
macro parameter
a local macro variable that is defined within parentheses in a %MACRO statement.
You supply values to a macro parameter when you invoke a macro.
macro processor
the component of SAS software that compiles and executes macros and macro
program statements.
macro quoting
a function that tells the macro processor to interpret special characters and
mnemonics as text rather than as part of the macro language.
macro variable
a variable that is part of the SAS macro programming language. The value of a
macro variable is a string that remains constant until you change it. Macro variables
are sometimes referred to as symbolic variables.
macro variable reference
the name of a macro variable, preceded by an ampersand (&<user-supval>name</user-sup-val>). The macro processor replaces the macro variable
reference with the value of the specified macro variable.
model text
another term for constant text.
name-style macro
a macro that is named and defined with the %MACRO statement.
null value
in the SAS macro language, a value that consists of zero characters.
open code
the part of a SAS program that is outside any macro definition.
positional parameter
a type of macro parameter that is named (using comma delimiters) in the %MACRO
statement at invocation, and is defined in the corresponding position (again using
comma delimiters) in the macro execution statement.
quoting
the process that causes the macro processor to read certain items as text rather than
as symbols in the macro language. Quoting is also called removing the significance
of an item and treating an item as text.
quoting function
a macro language function that performs quoting on its argument.
376
Glossary
reserved word
a name that is reserved for use by an internal component of a software application
and which therefore cannot be assigned by a user of that application to any type of
data object.
returned value
a character string that is the result of the execution of a macro function.
SAS compilation
the process of converting statements in the SAS language from the form in which
you enter them to a form that is ready for SAS to use.
SAS variable
a column in a SAS data set or in a SAS data view. The data values for each variable
describe a single characteristic for all observations (rows).
scope
in programming, the enclosing context for associated values and expressions. In SAS
macro programming, the scope can be either global or local, which will determine
how values are assigned to a macro variable and how the macro processor resolves
references to it.
session compiled macro
a macro that the macro processor compiles and stores in a SAS catalog in the WORK
library. These macros exist only during the current SAS session. Unlike stored
compiled macros, session compiled macros cannot be called in any other SAS
session.
statement-style macro
a macro that is defined with the STMT option in the %MACRO statement.
stored compiled macro
a macro program that was compiled in a previous session and which was stored in a
permanent directory. Unlike session compiled macros, stored compiled macros can
be called in any SAS program.
string
in the SAS macro language, any group of consecutive characters.
symbol table
the area in which the macro processor stores all macro variables and macro statement
labels for a particular scope.
symbolic substitution
the process of resolving a macro variable reference (&<user-sup-val>variablename</user-sup-val>) to its value.
symbolic variable
another term for macro variable.
text expression
a type of macro expression that generates text when it is resolved (executed). The
text expression can include any combination of text, macro variables, macro
functions, and macro calls.
Glossary
377
token
the unit into which the SAS language or the macro language divides input in order to
enable SAS to process that input. Tokens (also called words) include items that look
like English words (such as variable names) as well as items that do not (such as
mathematical operators and semicolons).
tokenizer
the part of the word scanner that divides input into tokens (also called words).
unquoting
the process of restoring the meaning of a quoted item.
word
another term for token.
word scanner
the component of SAS that examines all tokens (words) in a SAS program and
moves the tokens to the correct component of SAS for processing.
378
Glossary
379
Index
Special Characters
. (period)
creating, to follow resolved text 29
. (period) delimiter 9
& (ampersand)
indirect macro variable references and
31
& (ampersand) delimiter 4
% (percent sign)
with %STR and %NRSTR functions 86
% (percent) delimiter 4
%* Macro comment statement 284
%ABORT statement 282
%BQUOTE and %NRBQUOTE functions
242
%BQUOTE function 89
examples 89
%CMPRES and %QCMPRES autocall
macros 175
%COMPSTOR autocall macro 177
%COPY statement 286
%DATATYP autocall macro 177
%DISPLAY statement 287
%DO, iterative statement 289
%DO %UNTIL statement 291
%DO %WHILE statement 292
%DO groups
ending 293
%DO loops
generating repetitive pieces of text 9
%DO statement 288
%END statement 293
%EVAL function 243
%GLOBAL statement 294
%GOTO statement 295
destination of 300
%IF-%THEN/%ELSE statement 296
%INCLUDE statement 4
%INDEX function 245
%INPUT statement 299
text entered in response to 192
380
Index
examples 87
percent signs with 86
unmatched quotation marks and
parentheses 86
%SUBSTR and %QSUBSTR functions
257
%SUPERQ function 91, 259
entering macro keywords 93
examples 91
preventing warning messages 92
%SYMDEL statement 314
%SYMEXIST function 260
%SYMGLOBL function 261
%SYMLOCAL function 262
%SYSCALL statement 315
RANUNI CALL routine with 316
%SYSEVALF function 263
%SYSEXEC statement 316
%SYSFUNC and %QSYSFUNC
functions 268
%SYSFUNC function 10
formatting values produced by 270
functions and arguments for 367
portable functions with 148
%SYSGET function 272
%SYSLPUT statement 317
%SYSMACDELETE statement 318
%SYSMACEXEC function 265
%SYSMACEXIST function 265
%SYSMEXECDEPTH function 266
%SYSMEXECNAME function 267
%SYSMSTORECLEAR statement 319
%SYSRC autocall macro 183
%SYSRPUT statement 319
checking return code values on remote
host 111
with SAS/CONNECT interfaces 110
%TRIM and %QTRIM autocall macro
188
%UNQUOTE function 274
%UPCASE and %QUPCASE functions
275
%VERIFY autocall macro 189
%WINDOW statement 321
defining 72
evaluating 72, 74
evaluating with floating-point arithmetic
263
evaluating with integer arithmetic 243
operands and operators 73
assigning macro variables 49
autocall facility 113
macro definition errors 131
naming macros and external files for
154
troubleshooting 130
autocall feature 335
autocall libraries 113, 114
catalogs as 115
directories as 115
location of 356
member names 115
on different hosts 114
saving macros in 114
searching for member not found earlier
352
specification errors 131
autocall macros 10, 168
calling 116
displaying source location in log 333
filenames for 132
list of 168
names for 132
required system options for 169
storing 118
storing centrally 146
supplied by SAS 118
automatic evaluation 157
automatic macro variables 10, 20, 164
by category 21
defined by macro processor 20
displaying in log 312
host-specific values 149
list of 164
prefixes 164
read/write status of 20
B
A
aborting macros 282
ampersand (&) delimiter 4
ampersands
indirect macro variable references and
31
application welcome window 326
arguments
left-aligning 179, 181
arithmetic expressions 71
batch jobs
name of 204
black hole problem 126
blanks
compressing multiple 175, 181
maintaining leading blanks 255
protecting from being compiled as text
256
removing from macro variables 229
removing leading and trailing 175, 179,
181
Index
C
CALL EXECUTE routine 221
example of common problem with 104
example of incorrect use 103
timing details 103
CALL routines
invoking 315
CALL SYMDEL routine 223
CALL SYMPUT routine 224
formatting rules for assigning character
values 227
formatting rules for assigning numeric
values 227
referencing a value before it is available
226
scope and 63, 226
with complete DATA step and empty
local symbol table 68
with complete DATA step and
nonempty local symbol table 63
with incomplete DATA step 66
with SYSPBUFF and empty local
symbol table 68
CALL SYMPUTN routine 228
CALL SYMPUTX routine 229
calling autocall macros 116
calling macros 6, 33
calling stored compiled macros 118
case changes 180, 182, 275
case sensitivity 8, 114
catalogs
as autocall libraries 115
libref for catalog containing stored
compiled macros 357
searching for stored compiled macros
354
centrally storing autocall macros 146
character functions 159
character operands
comparing in logical expressions 77
character strings
passing to SAS programs 209, 360
substring of 257
character values
formatting rules for assigning 227
character width value 194
characters
locating 245
translating 271
CMDMAC system option 330
code
conditionally generating SAS code 8
generating SAS code using macros 5
381
column values
storing in declared macro variables 278
command style macros 143
command-style macros
invoking 330
comments 6, 284
compilation
note on size and number of instructions
335
compilation functions 81
compilation quoting functions 161
compiled items 33
compiled macros
executing 36
compiler 13
compiling macro definitions 34, 117
compressing blanks 175, 181
condition codes 193
conditional execution 222
conditional processing 296
conditionally generating SAS code 8
constant text 6
CPU
number available to SAS 208
customized windows 321
application welcome window 326
D
damaged data sets 197
data files
name of file most recently created 205
data sets
confirming existence of 271
creating macro variables and assigning
values from 228
damaged 197
determining number of variables and
observations in 270, 271
libref and name of most recently created
198
retrieving variable values previously
assigned from 235
DATA step
assigning values to macro variables 224
functions in 105
interacting with macro facility during
execution 102
passing values into a parameter list 223
resolving text expressions during
execution 231
returning value of macro variable,
during execution 234
DATA step compiler 13
macro resolution problems during
compilation 129
382
Index
E
efficient macros
See macros, efficient
encoding
for SAS sessions 199
error conditions
%SYSRC mnemonics for 183
error messages 122
text of last message generated in log
202
error return codes 201
error types 120
errors
debugging and 120
evaluation functions 160
executing compiled macros 36
execution, tracing flow of 134
execution errors 120
execution functions 82
existence of data sets 271
existence of macro variables 233, 260
exits
providing in a large macro 296
expressions
See also macro expressions
generating indirect macro variable
references with 30
troubleshooting evaluation problems
133
external files
naming for autocall facility 154
routing MPRINT output to 343, 351
storing MPRINT output in 136
F
FILENAME statement
return code from 203
filerefs
Index
G
global macro variables 5, 20, 43, 44
creating 61, 294
creating, based on value of local
variables 62
creating in macro definitions 295
indicating whether macro variables are
global 238
returning values as numeric 237
with same name as a local variable 303
global symbol table 44
deleting variables from 223, 314
graphics device 197
383
J
jobs
execution day 196
execution of 107
job ID 204
K
keyword parameters 8, 307
keywords 93
L
H
hexadecimal character constants 3
hexadecimal values 3
host name 203
of computers running multiple TCPIP
stacks 217
host-specific macro variables 153
automatic macro variables with 149
I
IMPLMAC system option 331
IN (#) logical operator
macro processor and 345
IN operator
delimiter for 343
indexes
executing a macro section repetitively,
based on an index variable 289
indirect macro variable references 30
labels
branching macro processing to specified
label 295
large macros
providing exits in 296
layered approach 120
leading blanks
maintaining 255
removing 175, 181
removing from macro variables 229
left-alignment 179, 181
length of a string 246
LIBNAME statement
return code from 206
librefs
for catalogs containing stored compiled
macros 357
of most recently created data set 198
licenses for SAS products 272
literals 13
local hosts
384
Index
M
macro calls 6
% (percent) delimiter and 4
creating a series of indirect macro
variable references 31
macro character functions 159
macro debugging
See debugging
macro definitions 5, 33
allowing new definitions 336
beginning 304
compiling 34, 117
containing several SAS statements 7
creating global variables in 295
ending 310
macro statements used in 156
nested 143
redefining 353
storing 117
troubleshooting 131
macro evaluation functions 160
macro execution
tracing 347
tracing generated statements for
debugging 349
macro expressions 71
See also arithmetic expressions
See also logical expressions
text expressions 71
macro facility 3
functions in 105
interacting with, during DATA step
execution 102
interfaces 10, 101, 167
reserved words 363
SCL interfaces to 108
searching for stored compiled macros
354
system options in 170
word rules 363
macro functions 10, 158
assigning results to macro variables 144
character functions 159
evaluation functions 160
lists of 163
manipulating macro variable values
with 32
quoting functions 161
troubleshooting 126
macro keywords 93
macro language 4
additional features of 10
as string based language 3
autocall macros 168
automatic variables 164
availability of 332
Index
elements 155
elements with system dependencies 152
functions 158
macro facility interfaces 167
reserved words in 23
statements 156
system options in macro facility 170
macro libraries
copying items from 286
macro names 5
for autocall facility 154
macro parameters 7
keyword parameters 8, 307
positional 307
validating 291
macro processing 11, 33
branching to specified label 295
calling macros 33
compiling macro definitions 34
defining macros 33
executing compiled macros 36
statement processing with macro
activity 14
statement processing without macro
activity 12
summary of 41
macro processor 3, 14
compiling macro definitions 34
evaluating arithmetic expressions 74
evaluating logical expressions 76
executing compiled macros 36
IN (#) logical operator and 345
tracing execution for debugging 346
variables defined by 20
warning message when reference does
not match variable 357
macro quoting 80
how it works 97
masking special characters and
mnemonics 80
mnemonics in passed parameters 82
necessity of 80
referring to already quoted variables 90
special characters in passed parameters
82
unquoting text 95
macro quoting functions 5, 80, 98, 161
%BQUOTE 89
%NRBQUOTE 89
%NRSTR 85
%QSCAN 98
%STR 85
%SUPERQ 91
amount of text to mask 91
compilation functions 81
compilation quoting functions 161
385
execution functions 82
execution of 161
overview 81
Q functions 98
summary of 94
unmatched quotation marks and
parentheses 162
when to use 83
which function to use 83
macro source code
saving 117
macro statements 10, 156
executing immediately 128
for automatic evaluation 157
lists of 156
open code recursion 125
used in macro definitions 156
used in open code 156
MACRO system option 332
macro triggers 15
macro variable names
prefixes 124
macro variable references 4, 27
combining with text 28
creating a period to follow resolved text
29
delimiting names within text 28
generating suffixes for 9
in submit blocks 108
indirect referencing 30
period (.) as delimiter 9
quoting values that might contain 256
resolved by SCL 108
resolving 232
tracing resolution of 358
warning message when reference does
not match variable 357
warning message when references
cannot resolve 340
macro variable resolution
errors 120, 123
examining with SYMBOLGEN 137
problems during DATA step
compilation 129
problems with 123
macro variable scopes
See scopes of macro variables
macro variables 4, 19
See also automatic macro variables
See also global macro variables
See also local macro variables
See also user-defined macro variables
& (ampersand) delimiter and 4
additional scan of long values 146
affecting job execution 107
assigning 49
386
Index
Index
387
N
name style macros 143
names
as tokens 13
batch jobs 204
external files, for autocall facility 154
host name 203
of most recently created data set 198
of procedure being processed 212
operating system 214
prefixes for macro variable names 124
process name 211, 216
userids 204
nested macro definitions 143
nesting information
generated by MLOGICNEST 135, 347
generated by MPRINTNEST 136, 351
nesting scopes 43
388
Index
notes
on macro compilation 335
numbers
as tokens 13
numeric operands
comparing in logical expressions 76
evaluating 74
numeric values
formatting rules for assigning 227
returning global macro variable values
as 237
O
observations
determining number in a data set 270,
271
ODS pathname 209
open code 4, 20
macro statements used in 156
open code recursion 125
operands 73
character operands 77
floating-point operands 75
numeric operands 74, 76
operating environment
name of 214
passing character strings to SAS
program steps 209
operating environment commands 316
operating environment condition codes
193
operating environment variables
returning value of specified variable
272
operating system identifier 212
operators 73
output
storing MPRINT output 136
P
parameter lists
passing DATA step values to 223
parameter values
text supplied as 210
parameters
macro parameters 7
passing parameters containing special
characters and mnemonics 82
parentheses
unmatched 162
unmatched, with %STR and %NRSTR
functions 86
PARMBUFF option
%MACRO statement 308
Q
quotation marks 5
unmatched 162
unmatched, with %STR and %NRSTR
functions 86
quoted strings 5
quoting
values that may contain macro
references 256
values that might contain mnemonic
operators 249
quoting functions 5, 161
%BQUOTE 242
%NRBQUOTE 242
%NRQUOTE 248
%NRQUOTE function 247
%NRSTR 247, 254
%QUOTE 248
%STR 254
%SUPERQ 259
R
RANUNI CALL routine
Index
S
SAS code
conditionally generating 8
generating with macros 5
SAS Component Language
See SCL
SAS jobs
execution date 196
389
390
Index
Index
391
T
TCPIP stacks 203
host name of computers running 217
temporary files
deleting 214
terminating macros 314
text
392
Index
U
unmasking 274
unmatched quotation marks and
parentheses 86
macro quoting functions and 162
unquoting text 95
unresolved macros
troubleshooting 126
unresolved values
passing 260
uppercase characters
converting to 275
converting to lowercase 180, 182
user identification
passing to SAS programs 360
user IDs
of current SAS process 217
user-defined macro variables 20, 23
assigning values 24
assignment types for values 24
creating 24
overview 23
user-generated macro variables
displaying in log 313
user-written functions
executing 268
userids
name of 204
V
variables
determining number in a data set 270,
271
value of specified operating system
variable 272
verifying text or text expressions 189
version number 218
W
warning conditions
%SYSRC mnemonics for 183
warning messages 122
debugging and 120
preventing 92
text of last message formatted for log
display 219
when macro references cannot resolve
340
when variable reference does not match
variable 357
Index
393
394
Index