I have this column with numbers:
3.7
4.8
7.6
4.2
4.3
4.4
6.4
7.3
8.4
5.4
6.4
6.4
5.4
7.4
Sum: 82.10
I round them with 0 decimals, so i have the result:
4
5
8
4
4
4
6
7
8
5
6
6
5
7
Sum: 79
The difference between them is 3 I currently solve this problem by manually adding 1 to each column, until i get the same total; so I add 1 to each of the first 3 columns:
4+1
5+1
8+1
4
4
4
6
7
8
5
6
6
5
7
I need a formula to automatically add or subtract from each column 1, until the rounded total equals the initial one.
Can you help me please?