Cell E5 contains 5v5+4. I want cell F5 to sum the numbers in cell E5, to give 14.
How can I do that?
I have no idea how to do that, so didn't try anything.
For context, I this is for a football drill project where I need both the total number of players and the breakdown of players in each team.
Try using
TEXTSPLIT()function:Or,
The second approach ensures to exclude any alphabets whether small or caps, along with
+operator to return an array of numbers as text, therefore on adding adouble unaryconverts numbers returned as text to actual number for math operation. For converting the same, using+0or/1or*1can also be used.Or as mentioned by JvdV Sir, using nested
TEXTSPLIT()