Hello,
I’m trying to create a column with a formula that removes text from another column before the delimiter, for example
Column A has “testing - complete”
I want a formula in column B that will output just the word “complete” after the ‘-’.
Is this possible?
Thank you!
Dear @Nikki_Donkin, welcome to the community
This should do the job:
3 Likes
Hi @Nikki_Donkin,
@Jean_Pierre_Traets solution works very well
In case this is relevant, I’d just add the Trim()
function at the end to strip out potential whitespace(s) after “-”.
Therefore one of the following:
thisRow.A.Split(" - ").Last() // Ugly...
thisRow.A.Split("-").Last().Trim() // Better
thisRow.A.RegexReplace(".*-\s", "") // Alternative
Cheers
5 Likes
Perfect, thank you both so much!