Hello,
I'm relatively new to SAS and am not able to understand why I cannot use call routines in assignment statements or expressions. Could someone please explain why? Thanks!
The syntax is different. The assignment portion of a CALL routine is usually included in the CALL rather than as an assignment.
@vseshad wrote:
Hello,
I'm relatively new to SAS and am not able to understand why I cannot use call routines in assignment statements or expressions. Could someone please explain why? Thanks!
An assignment statement requires a single value:
X = (something that resolves to a single value);
Many of the Call routines do not return single values OR have as one of their parameters the name of a variable to place the result in.
Example:
Call missing ( a, b, c, var1, var2); Sets each of the variables in the parameter list to missing.
call cats(answer, x, y, z); concatenates the variables x, y and z placing the result into Answer. similar to: Answer = cats(x,y,z);
Several call routines provide additional functionality to a similar function such as CALL SCAN that not only returns a "word" but can return the position and length of the returned word in separate variables. (Note multiple results again AND result parameters)
Some other call routines set or remove information used by other functions or call routines such as Call Prxfree frees memory. Some routines set properties for variables such as Call Label. These would not be good candidates for assignments in any case.
So, which specific Call routine are you attempting to use in assignment statements?
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.