Advertisement
1 / 7
Using SAS Utility Procedures
Question 1 of 7



Complete the FUNCTION statement to create a function named TitleName that consists of two character arguments.

proc fcmp outlib=certadv.functions.samp;
    function TitleName ___________________ $50;
    
if JobCode='S' then return(catx(' ','Software',',JobTitle'));
    else if JobCode='M' then return(catx(' ','Manager of ',',JobTitle'));




Saving progress… My progress
Advertisement