concatenate options (orientation) within summarize tool
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi I'm needing to group a column based on group by from another column. I have a list of stores that need to be grouped by their products they have.
I am trying to send each of these stores their current list of products in an email. I'm aware of using the Report text tool to help with these and change dynamically the list of products.
However I need to change the orientation of the product list so it looks cleaner. I do not want to create a new row for each product because that would defeat the purpose of summarizing.
Need to know if something can be done within Summarize tool, Formula Tool or Report Text tool.
Instead of :
Store 1 | Apples, Pears, Potatoes, Rice, Celery.
Store 2 | Chicken, Rice, Potatoes
I would like
Store 1 | Apples
Pears
Potatoes
Rice
Celery
Store 2 | Chicken
Rice
Potatoes
Thanks for your help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @sammyb84
Not sure how the original data looks, but here's an example:
- Group by store, concatenate using the \n delimiter to create the newlines
- Prepend the store to the concatenated field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks a ton @Luke_C ! Really didn't need the extra stuff after the summarize tool.
Wasn't aware of '\n' . Is this a parsing language imbedded in the summarize tool? I figured it could only be actual separators so this is awesome.
Really appreciate you!
Thanks
Sam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @sammyb84
\n is a white space character. It's supported in several tools like the summarize tool, text to columns tool, etc. Here's a few others from the documentation:https://help.alteryx.com/20221/designer/text-columns-tool
