Site icon Quickinfoz

How to Sum Weight Values Like “12 KG” or “105 KG” in Excel – 4 Formula Comparison

When you’re working with weights like "12 KG" in Excel, =SUM() won’t work because these are text values. In this post, we’ll walk through 4 common formulas and explain which one you should use — and why.

Here’s the test data from our Excel table:

Weight
112 KG
218 KG
39 KG
415 KG
5105 KG

🔢 Formula 1: =SUM(A4:A7)

❌ Result: 0

Why it fails: Excel treats text like “12 KG” as a non-numeric string. SUM() ignores text completely.


🔢 Formula 2: =SUM(--LEFT(C4:C7,2))

✅ Result: 54

Why it works (partially):


🔢 Formula 3: =SUMPRODUCT(--LEFT(E4:E7,LEN(E4:E7)-3))

✅ Result: 144

Why it works:


🔢 Formula 4: =SUMPRODUCT(--LEFT(G4:G7,LEN(G4:G7)-3))

✅ Result: 144

Why it still works:


🧠 Conclusion

FormulaHandles Text?3-Digit Safe?Extra Spaces Safe?Recommended
SUM(A4:A7)❌ No❌ No✅ Yes❌ No
SUM(--LEFT(...,2))✅ Yes❌ No✅ Yes⚠️ Limited
SUMPRODUCT(--LEFT(...,LEN()-3))✅ Yes✅ Yes⚠️ Limited✅ Good
SUMPRODUCT(...) with trailing spaces✅ Yes✅ Yes✅ Yes✅✅ Best

🎬 Watch the Video:

👉 Watch now on YouTube


🔗 Stay Connected:

🌐 Website: https://quickinfoz.com
📺 YouTube: QuickInfoz Channel


Exit mobile version