Forum Discussion
acerNZ
5 years agoHelper III
Multiple queries on custom column ?
Hi Experts, Sorry if the subject is misleading I have a custom column with the following Step1: = Table.TransformColumnTypes(#"Added Custom",{{"Postcode", type text}}) The out is basically po...
- 5 years ago
Hi acerNZ
Why the need to do it as 1 step? Just curious.
Try this
= Table.ReplaceValue(Table.TransformColumnTypes(#"Added Custom",{{"Postcode", type text}}),",","",Replacer.ReplaceText,{"Full Address"})regards
Phil
PhilipTreacy
5 years agoSuper User
Hi acerNZ
Why the need to do it as 1 step? Just curious.
Try this
= Table.ReplaceValue(Table.TransformColumnTypes(#"Added Custom",{{"Postcode", type text}}),",","",Replacer.ReplaceText,{"Full Address"})
regards
Phil
- acerNZ5 years agoHelper III
Thank you PhilipTreacy It is just to concatenate to form full address as the columns were split up ( house, street, region, state, zip code, etc). I was about to to extend the logic of merging queries to a step prior with concatenation as well. Best Regards