Hi All,
I have data in one column that looks like this
E55-H55+M55
E10+I10+J10+K10+F10-H10-G10+M57
E10+F10+G10-H10+I10+J10+K10+M58
E10+F10+N9+O9+L10+M59
E10+I10+J10+K10+F10-H10+L10
E10-H10+F10+J10+L10
...
I'm trying to split that column to get something like:
E55 | -H55 | M55
(I want to keep the operation sign of whether the item is positive or negative). How can I go about doing this?
I thought about delimiting with the "+" but then that runs into an issue that I will then have to delimit multiple other columns, and it doesn't solve the issue of how to make sure the negative operator signs remains attached to the appropriate information. Would a Find/Replace tool be better?