Forum Discussion
Anonymous
8 years agoNot applicable
How to strip out characters from a string
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 ...
- 8 years ago
for example remove "-" from the string
=SUBSTITUTE([columnname], "-", "")
abhi9255
8 years agoAdvocate II
Create a new column and insert the dax as follows
trimlastcharacter= LEFT(tablename[columnname],LEN(tablename[columnname])-1)
- Anonymous8 years agoNot applicable
Hi Abi,
The apostrophe could be anywhere in ths string ie O'Neil
Thanks
C