The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have two seperate systems where one stores the surname with ' apostrophes etc and one which stores them without.
How would I go about removing the ' from a string. I have tried using
Table.AddColumn(tb_Pers_Table, "CustomSurname", each Text.Combine(List.RemoveItems(Text.ToList([Surname]),Text.ToList(",.';")))) & " " & [CH_Name_Initials]
However it throws up an error, how would I go about doing it with Dax?
Thanks
Chris
Solved! Go to Solution.
for example remove "-" from the string
=SUBSTITUTE([columnname], "-", "")
Create a new column and insert the dax as follows
trimlastcharacter= LEFT(tablename[columnname],LEN(tablename[columnname])-1)
Hi Abi,
The apostrophe could be anywhere in ths string ie O'Neil
Thanks
C
for example remove "-" from the string
=SUBSTITUTE([columnname], "-", "")
Excellent, almost cracked my head before viewing this. Thank you very much!
User | Count |
---|---|
83 | |
83 | |
37 | |
34 | |
32 |
User | Count |
---|---|
92 | |
79 | |
61 | |
51 | |
51 |