the formula below gives me the total in D1
in E1 i need to get the meters squared by multiplying each number individually by the qty in A1
is this possible?
=SUM(VALUE(CELLSPLIT(B1,",")))+SUM(VALUE(CELLSPLIT(C1,",")))
B and C should total 9.49 m2This doesn't make sense to me. Can you show the manual calculation?
That will only work if the number in A2 is always 1, it never multiplies that value.Thank you so very very much! that worked perfectly!
greatly appciated!
Thank you.That will only work if the number in A2 is always 1, it never multiplies that value.
Why not just this...Try:
Book1
A B C D E 1 2 1 .273, .550, 1.25 3.048, 2.356, 5.886 9.485404 Sheet1
Cell Formulas Range Formula E2 E2 =SUMPRODUCT(--TEXTSPLIT(B2,","),--TEXTSPLIT(C2,","))
=SUM(TEXTSPLIT(B2,",")*TEXTSPLIT(C2,","))