Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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 the first word.
When I'm trying to build my relationships in PBI, as it's not case sensitive, I keep only getting the option for many-many relations when the desired outcome is to have a 1-1 relationship.
Is there any way to add a prefix to the first word if the first letter is capitalised?
Thanks in advance! 🙂
Solved! Go to Solution.
= Table.TransformColumns(previousStep, {{"Column1", each if Text.PositionOfAny(_, {"A".."Z"}) = 0 then "prefix-"&_ else _, type text}})
Proud to be a Super User! | |
= Table.TransformColumns(previousStep, {{"Column1", each if Text.PositionOfAny(_, {"A".."Z"}) = 0 then "prefix-"&_ else _, type text}})
Proud to be a Super User! | |
Thanks for this, the additional solution you provided was really useful but your original post gave me the desired outcome I was after!
Text.Proper() may be a better solution for you.
= Table.TransformColumns(previousStep, {{"Column1", each Text.Proper(_), type text}})
Proud to be a Super User! | |
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.