I have a string which is a list of products with the value of each product in brackets and I want to get a total order value
String would be something like
Product 1 ($10.00) / Product 2 ($7.50) / Product 3 ($87.50) / etc
If I do text to columns on "/" then I'm left with the product and value in separate columns.
I'd like to find the string inside the brackets and then be able to sum all of these values. Does anyone have any ideas?
I don't really want to do 7+ text to columns on each product on "(" or "($" and then get rid of the end bracket and then sum all that up since it's quite a messy way to do it and I'd have 20+ columns before getting rid of the excess fields.