Default Macro Values


/ Published in: SAS
Save to your folder(s)

Quite often it is necessary to set a default value for a macro parameter that is passed to a program. If the program is a macro, the %IF statement can be used to check if the value is provided and provide a default value if not. Since %IF statements are not allowed outside of macros, that technique won't work for a non-macro program (e.g., a file/program that is %INCLUDEd). The following code snippet demonstrates the use of the COALESCEC function to assign a default value.

since macro is a text manipulation facility, the coalesceC function is used regardless of whether the expected value for the parameter is numeric (i.e., everything in macro is interpretted as a character string).

URL: http://www.sascommunity.org/wiki/Tip_of_the_Day:October_12

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.