Hi,
Is there ANY solution to adding numbers separated by commas in the same cell?
I have used the SUBSTITUTE function to replace multi-select items with a numerical value and this has resulted in this kind of result:
3,2,1,4,1
Now I need to add those numbers so I get 11.
The closest I’ve found to a solution is in this post:
IF(
{Your Variable},
VALUE(
LEFT(
{Your Variable},
FIND(',',{Your Variable})-1
)
)+
VALUE(
RIGHT(
{Your Variable},
LEN({Your Variable})-FIND(',',{Your Variable})
)
)
)
However, it only works for 2 numbers separated by a comma, not multiple.
Any help is greatly appreciated!! Many thanks