hi all, I'm trying to create a histogram inside of a macro that uses a parameter variable of &Vbl. Does anyone know how to do this? my current code is: %MACRO HistandStats ( DSNm = , Vbl = , Stats = N MEAN STDDEV , Ndec = 1); TITLE1 "Histogram for &Vbl from Data Set &DSNm"; proc univariate data = work.DSNm; histogram &Vbl; run; but this doesn't seem to work when I set DSNm and Vbl to specific values! thanks in advance.
... View more