Thankyou for using Microsoft Q&A platform and thanks for posting your question here.
As I understand your query, you want to remove the spaces from the source data of your dataflow. Please let me know if that is not the ask here.
You can use trim() function to remove the leading and trailing spaces from a string.
In case your requirement is to remove all the spaces from middle of the string too in a particular column, then use: replace(' ','')
or in case you have to perform the same transformation with all the columns then use column pattern with the following expression: regexReplace($$,' ','')
Additional resources: Column patterns in derived column and aggregate
Hope it helps. Please accept the answer
if it was helpful and click on Yes
for Was the answer helpful
survey