I have data like this
Person | Total Count |
---|---|
First | 5 |
Second | 6 |
Third | 5 |
Null | 6 |
I want to take the nulls, divide by 3 (number of people), and add that number to each of the [Person]'s [Total Count] column. So, I want it to look like this:
Person | Total Count |
---|---|
First | 7 |
Second | 8 |
Third | 7 |
Null | 6 |