Forum Discussion

DonYTechGuy's avatar
DonYTechGuy
Copper Contributor
Feb 27, 2020
Solved

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...
  • PReagan's avatar
    Feb 27, 2020

    Hello DonYTechGuy,

     

    As a variant:

    =SUM(SUMPRODUCT(LEN(Cell_Range)),-SUMPRODUCT(LEN(SUBSTITUTE(Cell_Range,",",""))),COUNTA(Cell_Range))

Resources