Welcome to the forums If you get a table in the results window that you want as a SAS data set you need to find the name using ODS TRACE. The table name for the quantiles if FITQUANTILES. Using the SASHELP.CARS dataset I think this is what you want. ods table fitquantiles=mpg_city_quantiles; PROC UNIVARIATE DATA = sashelp.cars NOPRINT ; VAR mpg_city; HISTOGRAM mpg_city / NOPLOT LOGNORMAL ( W=1 L=1 COLOR=YELLOW ZETA=EST THETA=0 SIGMA=EST); RUN; proc print data=mpg_city_quantiles; run; A blog post on the topic: How do I get my SAS results into a data set? | Statistics and other stuff from a geek
... View more