Reputation: 71
I need to sum up all values in one cell and get the total result. Note that there is also text in parenthesis as well. Here in the picture I need to know the Total for "Lenovo"
Upvotes: 1
Views: 378
Reputation: 1055
You can use:
=SUM(SPLIT(REGEXREPLACE(B2, "[^\d\.]+", "|"), "|"))
Upvotes: 4