I am trying to create a formula, and I keep ending up with unparsable. The name of the field I am accessing is called "Deliverable Number". Now For example, this field contains 2 characters I want to REMOVE
Original: DEL #10 - TO Portal Strategy/Solution
Desired: DEL 10 TO Portal Strategy/Solution
As you can see the "#" has been removed. Now there MAY be instances where other file would be named DEL#10 - TO Portal Strategy/Solution. In those cases I would need the # not only to be removed, but also to be replaced by a space.
As you see, the other part of the formula requires the "- " to be removed.
This is what I came up with, and it is not quite working:
=TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE([Deliverable Number]@row, "DEL#", "DEL "), "DEL #", "DEL "), " - ", " "))