Google-sheets – How to sum a column with cells that have multiple values separated by a comma

google sheets

This might get a little messy, but bear with me.

Say Column C has 10 cells. Each cell has several values separated by commas;C2 may have "1, 10, 9, 80", C3 may have "2, 25, 90, 5", etc. I want to sum the entire column somewhere.

Currently, I can sum a single cell with commas with the following formula; =ARRAYFORMULA(IFERROR(SUM(SPLIT(C1,",")))), but I would like to sum all of the cells in that row.

Is this possible?

Here is a copy with columns C-F needing to be separately summed:

https://docs.google.com/spreadsheets/d/1-iCEzZenqWzauIF6_brRlQgHmGmc8eAObXKhJwI8k5U/edit?usp=sharing

Best Answer

Just apply the formula to the range:

=ARRAYFORMULA(IFERROR(SUM(SPLIT(C1:C3,","))))