TO keep it simple, you need to get the ADDED/DELETED first. Meanwhile, here are the three formulas:
A1: Your text
B1: =TRIM(LEFT(SUBSTITUTE(MID(A1, FIND(", ", A1)+2,1000), C1, REPT(" ", 1000)),1000))
C1: =IF(ISNUMBER(SEARCH("added", A1)), "added", "deleted")
D1: =TRIM(RIGHT(SUBSTITUTE(A1, C1, REPT(" ",1000)), 1000))
Bookmarks