• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to calculate total score from the given table

thakur

Member
Hi,

How to calculate total score from the given table. Attaching the excel sheet. Please advise.

Regards,
Thakur
 

Attachments

  • Find total score.xls
    103 KB · Views: 13
If the numbers were text, could simply do:
=SUM(D9:D1470)

But, taking what we have, we will need to force the text to become a number through multiplication
=SUMPRODUCT(1*D9:D1470)
 
Hi Thakur,

Multiply by 1 will convert your text into numbers (your numbers stored as Text).

Alternately you can use simple formula =SUM(D9:D1470)
Just select your range, Go to Data > Text to Columns > Next > Next > Finish
 
Back
Top