Forum Discussion

C-Duff84's avatar
C-Duff84
Regular Visitor
3 years ago
Solved

Adding spaces between all characters in a string

Hi,    Wondered if anybody could help. I need to add spaces between all characters in strings in a column called [Names] i.e the string 'Simon Jones', would become 'S i m o n  J o n e s'   Not s...
  • CNENFRNL's avatar
    3 years ago
    = Table.AddColumn(Source, "Spaced", each Text.Combine(Text.ToList([Name]), " "))