Forum Discussion
Anonymous
1 year agoNot applicable
Prefix for Capital Letters only
Hi, Couldn't find anything to suggest a solution to my conundrum! I have 2 tables containing website keywords and phrases, some being duplicates with the only difference being capitalisations on...
- 1 year ago
= Table.TransformColumns(previousStep, {{"Column1", each if Text.PositionOfAny(_, {"A".."Z"}) = 0 then "prefix-"&_ else _, type text}})
jgeddes
1 year agoSuper User
= Table.TransformColumns(previousStep, {{"Column1", each if Text.PositionOfAny(_, {"A".."Z"}) = 0 then "prefix-"&_ else _, type text}})
Anonymous
1 year agoNot applicable
Thanks for this, the additional solution you provided was really useful but your original post gave me the desired outcome I was after!