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}})
jgeddes
1 year agoSuper User
Text.Proper() may be a better solution for you.
= Table.TransformColumns(previousStep, {{"Column1", each Text.Proper(_), type text}})