excel - Cell numeric value -
i created assessment form on excel , willing upgrade below intended feature. table looks like:
+--------------------+---+---+---+---+---+ | | 1 | 2 | 3 | 4 | 5 | +--------------------+---+---+---+---+---+ | computer knowledge | | | | | | +--------------------+---+---+---+---+---+ | office knowledge | | | | | | +--------------------+---+---+---+---+---+ | relationships | | | | | | +--------------------+---+---+---+---+---+
when put x
or character on table want excel assign column value , summary score below:
+-------------+----+ | total score | 17 | +-------------+----+
does have suggestion?
if understand question correctly, assume following table yield total score of 10:
technically put character want in cells, counting non-empty cells in columns , multiplying each factor should accomplish want.
cell b6 following:
=(counta(b2:b4)*1)+(counta(c2:c4)*2)+(counta(d2:d4)*3)+(counta(e2:e4)*4)+(counta(f2:f4)*5)