%macro two(first=,second=); title "&first &second" ; proc freq data=hsurvey2.hsa05_adult_public; table year; run; %mend two; %two(first=this is a long string, second=and so is this); It turns out that this works fine. The problem in my code is something else entirely. I'll try to track that down.
... View more