I have a "+" delimited string in a single cell that needs to be added together (i.e. "2+.25+1+0.4" should be 3.65) however I'm having problems because of the numbers contain decimals. I was using this formula but it only works with whole integers.
=IF(ISNUMBER(SEARCH("+",M2)), SUMPRODUCT((MID(SUBSTITUTE(M2,"+",""),ROW(INDIRECT("1:"&LEN(SUBSTITUTE(M2,"+","")))),1)+0)), VALUE(M2))
=IF(ISNUMBER(SEARCH("+",M2)), SUMPRODUCT((MID(SUBSTITUTE(M2,"+",""),ROW(INDIRECT("1:"&LEN(SUBSTITUTE(M2,"+","")))),1)+0)), VALUE(M2))