Hi!
I am trying to sum certain values from a specific row and column and I don’t know how to do it. Better to explain it with an example:
In this image I am trying to get the following value in the third column: (1 + 2 + 3 + 4) / 4 = 2.5. That is, I am trying to add the 4 items from the second column (1 + 2 + 3 + 4) and divide them by the value from the first column (4). The result will be displayed in the third column.
Like this:
4 1 2.5
4 2 2.5
4 3 2.5
4 4 2.5
All this for various groupings, such as the one shown below.
Like this:
4 1 2,5
4 2 2,5
4 3 2,5
4 4 2,5
7 1 1
7 1 1
7 1 1
7 1 1
7 1 1
7 1 1
7 1 1
Could someone guide me?
Many thanks!!