The following code is giving a date format issue: I have created format (named datex) for loan_issue_date variable. But, when i run following code, the code gives error stating "DATEX format not found". Please help.! Code: proc format library=deep fmtlib cntlout=deep.fmts; picture datex (default = 10) low-high = '%d-%b-%y' (datatype = date); run; options fmtsearch=(deep work); data deep.customer_loan_detail; infile cards; input cust_id 4. acct_number $8. customer_loan_type : $8. loan_issue_date anydtdte. loan_amount 5. loan_flag $3.; format loan_issue_date date9.; datalines; 1034 C734459 CAR 05-APR-12 22789 YES 2498 C657568 HOME 05-MAR-12 100387 YES 6523 C673121 HOME 04-SEP-05 87982 YES 8677 C367420 HOME 19-SEP-13 35876 YES 5487 C784509 CAR 02-AUG-11 14990 YES 8496 C741298 PERSONAL 12-JUL-10 5500 YES ; run;
... View more