Hi,
I tried the following in 8SR4 and it worked fine.
If you are having specific problems with a particular dataset, please send more details to tech.
Easwar
OriginLab
newbook;
range r=2;
r=normal(1000);
// bin from -5 to 5 with bin size of 0.1
freqcounts irng:=r min:=-5 max:=5 inc:=0.1;
newbook;
range r=2;
r=normal(1000);
// bin from -5 to 5 with 50 total number of bins
freqcounts irng:=r min:=-5 max:=5 stepby:=1 intervals:=50;