Forum Discussion
RamiDaoud
5 years agoFrequent Visitor
Remove White Spaces between decimal digits
Hello, I have Latitude column with Decimal type and there are some spaces between the digits. My question is how I can remove the spaces? . I tried trim function which required changing the type fro...
CNENFRNL
5 years agoCommunity Champion
Hi, RamiDaoud , Text.Remove does the trick for you.
Table.AddColumn(Source, "Custom", each Text.Remove([Latitude], " "))RamiDaoud
5 years agoFrequent Visitor
I tried it but I recived the follwoing error:
Expression.Error: The value isn't a single-character string.
Thank you