Type : CREATION_INTERNE
The code only performs macro-level string manipulations and does not directly interact with data tables.
| 1 | %macro AHGautoe(ver); |
| 2 | %local file; |
| 3 | %let file="&autodir\autoexec&ver..sas"; |
| 4 | %put &file; |
| 5 | %include &file; |
| 6 | %mend; |