SOLVED
How do I concatenate a string to a column in my dataset?
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
4bc392f306592b8ab22c
7 - Meteor
‎01-25-2018
02:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Solved! Go to Solution.
Labels:
- Labels:
- Trifacta Classic
2 REPLIES 2
Trifacta_Alumni
Alteryx Alumni (Retired)
‎01-26-2018
10:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
The MERGE() Function (https://docs.trifacta.com/display/PE/Merge+Function), in conjunction with the Set Transform (https://docs.trifacta.com/display/PE/Set+Transform), should accomplish this.
It would look something like this:
Transformation: Set
Columns: Your_column
Formula: MERGE([your_column, 'your_string'], 'optional_delimiter')
It's important to remember that the values you would like to concatenate are listed inside an array. The optional delimiter allows you to separate the original values of your column, and the string you are concatenating to it, with a dash, underscore, etc.
‎01-29-2018
10:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
sweet, this helps with one of the other things I was trying to do too!
