@christian12
This will return a Blank as there are no spaces,
With({myString:"Apples,Oranges,Bananas"},
If(IsMatch(myString, Space, Contains), Last(TrimEnds(Split(myString, " "))).Result, Blank())
)
This will return 🍌🍌🍌
With({myString:"Apples,Oranges, Bananas"},
If(IsMatch(myString, Space, Contains), Last(TrimEnds(Split(myString, " "))).Result, Blank())
)
Please remember to give a 👍 and accept my solution as it will help others in the future.