Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Remove Spacing from Text String

Hi,   I am wanting to remove spacing from the text string like "ex08 kiu" so it would read "ex08kiu"  how can I acheive trhis in dax?   I thought about using = Substitute(" ",textstring,"") but t...
  • Johanno's avatar
    8 years ago

    Hi, have you maybe changed the order? I use as a calculated column:

    Column without spaces = SUBSTITUTE(Table1[Header];" ";"")

    and that seems to work.

     

    /Johan