Hi All,

I have a recordset which gives me a frequency distribution. I would like to do further processing on the frequency distribution by lowering the upper and lower bounds and getting the frequency results added to the new upper and lower bound. eg

Original Recordset

Frequency
-3 2
-2 6
-1 5
0 3
1 2
2 7
3 1

Reset Upper and lower bounds of frequency distribution to look like

Frequency
-2 8
-1 5
0 3
1 2
2 8

so the results outside -2 or 2 and added to the frequency of -2 and 2.

Any ideas on how to achieve the above would be greatly appreciated.

Jack