Hello community. I am trying to pull half of this text so that I just get the left hand side of "╏" from the Manufacturer | Model column
The Manufacturer column is not working:
=LEFT([Manufacturer | Model]@row, LEN([Manufacturer | Model]@row) - FIND("╏", [Manufacturer | Model]@row))
Result = Systimax ╏ 360G2-1U-
The Model column is working:
=RIGHT([Manufacturer | Model]@row, LEN([Manufacturer | Model]@row) - FIND("╏", [Manufacturer | Model]@row))
Where am I going wrong here?
Many thanks in advance!