Celeb Glow
general | March 13, 2026

How can I sum the first character of a column in excel?

My column has data such as:

3 DAYS
5 DAYS
8 DAYS

I'd like to sum the number of days.

I can do LEFT(B2, 1) for example to get the number, however I am not sure how to combine that with SUM to create a total.

1

2 Answers

Use SUMPRODUCT to wrap your LEFT formula:

=SUMPRODUCT(--(LEFT(A1:A3,1)))

The -- does the same as VALUE(). It turns the text value that is returned by the LEFT() function into a number.

enter image description here

3

Click on data option in toolbar and select text to columns

Then delimit the columns by space ,then the string is separated from numerical

Now you can sum the column

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy