if I have something like
proc univariate data=work.testDateSet noprint;
histogram value/ midpoints=(-2.45 to 2.45 by .05) outhist=newDataSet;
run;
data work.test;
set work.testDataSet;
Char_1=put(_midpt _-0.05,4.2);
Char_2=put(_midpt _+0.05,4.2);
run;
in sas is there a variable for endpoints If I change midpoints to endpoints can I still extract the endpoints by doing something like _endpt _ .