Toey,
If every cell in the column will contain a 1 or 2 or 3 or 4, then Bernard's
answer (in his second post) will give you what you want. If some cells might
contain other values that you do not wish to count, you can get the right
result as follows.
Assuming (as Bernard did) that the data you want to sum are in the range
A1:A10, enter the following formula in the cell where you want the sum to be:
= 8 * ( countif( a1:a10, "=1" ) + countif( a1:a10, "=2" ) + countif(
a1:a10, "=3" ) + countif( a1:a10, "=4" ) )
If all the cells will contain integers, you can simplify the formula to:
= 8 * ( countif( a1:a10, "<=4" ) - countif( a1:a10, "<1" ) )
I hope this helps,
Hugh John