Hi
Is there a way to modify the Text.Replace function (or a different function altogether) to only replace text where the entire string = x. For example, if I have 2 rows containing "a" and "ab" and I replace "a" with "z", I will get "z" and "zb". Whereas I would like to just replace any rows where the text = "a", rather than contains "a", therefore returning "z" and "ab". I would like to avoid adding in a lookup or a custom column if possible, which is why I am asking specifically about the Replace function.
Is there a way to modify the Text.Replace function (or a different function altogether) to only replace text where the entire string = x. For example, if I have 2 rows containing "a" and "ab" and I replace "a" with "z", I will get "z" and "zb". Whereas I would like to just replace any rows where the text = "a", rather than contains "a", therefore returning "z" and "ab". I would like to avoid adding in a lookup or a custom column if possible, which is why I am asking specifically about the Replace function.