Type : INTERNAL_CREATION
The '%AHGsome' macro does not process external or internal SAS datasets. It operates solely on a character string provided as a parameter during its call, performing a check for its non-emptiness. The 'data' are therefore character string inputs passed directly to the macro.
| 1 | %macro AHGsome(str); |
| 2 | not %AHGblank(&str) |
| 3 | %mend; |