Forum Discussion
DonYTechGuy
Feb 27, 2020Copper Contributor
Adding 2 numbers in a column with a comma in between
This formula works to count more than one number in a cell separated by a comma in Google Sheets. =COUNTA(SPLIT(JOIN(",",L10:L142),",")) 1,2 3,4,5 See the Screenshot below. Is there an eq...
- Feb 27, 2020
Hello DonYTechGuy,
As a variant:
=SUM(SUMPRODUCT(LEN(Cell_Range)),-SUMPRODUCT(LEN(SUBSTITUTE(Cell_Range,",",""))),COUNTA(Cell_Range))
PReagan
Feb 27, 2020Bronze Contributor
Hello DonYTechGuy,
As a variant:
=SUM(SUMPRODUCT(LEN(Cell_Range)),-SUMPRODUCT(LEN(SUBSTITUTE(Cell_Range,",",""))),COUNTA(Cell_Range))
- DonYTechGuyFeb 27, 2020Copper Contributor
Hello, PReagan Thank you so much for the very rapid reply. Your solution works just as I need it to! TY soon much. This has been a challenge for me for some time now! Thanks Again!!
Re:
=SUM(SUMPRODUCT(LEN(Cell_Range)),-SUMPRODUCT(LEN(SUBSTITUTE(Cell_Range,",",""))),COUNTA(Cell_Range))
- DonYTechGuyFeb 27, 2020Copper Contributor
From DonYTechGuy to PReagan FYI ... Just so other people will know from reading this thread ... This formula works in #GoogleSheets as well. It will also count letters as well as numbers. Thanks Again PReagan for the fantastic suggestion/solution!
- PReaganFeb 27, 2020Bronze Contributor