I am looking to extract the string of data to the right of the LAST "/".
Here is my formula
=RIGHT([HELP-Phase]@row, FIND(" / ", [HELP-Phase]@row))
HELP-Phase cell contains the below;
Project Platform (2022-1107) / Core Concept Design and Business Modeling / Creative Development and Attraction Design (Phase 2)
What I am getting back is;
d Attraction Design (Phase 2)
What I really want is;
Creative Development and Attraction Design (Phase 2)
How do I need to change my formula?