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:

enter image description here

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) 

Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -