Forum Discussion
aishak12
5 years agoHelper IV
Joining two columns into one
Hi All, I am importing my data with SQL and have two columns (RECOMMENDED_BLK & RECOMMENDED_LOT). I would like to comine these values into a new column while having a slash between them. Fo...
- 5 years ago
Hi aishak.
You can inside power query add a custon column with the code belowText.Combine({Text.From([RECOMMMENDED_BLK], "pt-BR"), "/", [RECOMMENDED_LOT]})best regards.