Forum Discussion
aishak12
Helper IV
5 years agoJoining 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.
Portrek
Resolver III
5 years agoHi aishak.
You can inside power query add a custon column with the code below
Text.Combine({Text.From([RECOMMMENDED_BLK], "pt-BR"), "/", [RECOMMENDED_LOT]})
best regards.
aishak12
Helper IV
5 years agoI am receiving error for some reason. Do you have any clue what the issue is?