Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Line Break with Concatenated Data

ryanmor24
6 - Meteoroid

So I have a list of employee names, IDs, and Job titles that are associated with Supervisors. I have concatenated the information to group employees by supervisor and have a single cell with "Name, Title (ID), Name2, Title2 (ID2) ..." I want to have each of those employees' information on separate lines in a singular cell. How would I do that? 

3 REPLIES 3
mceleavey
17 - Castor
17 - Castor

Hi @ryanmor24 ,

 

can you please post some mock data and a mock outcome showing what you're trying to achieve?

 

M.



Bulien

Maskell_Rascal
13 - Pulsar

Hi @ryanmor24 

 

If you're using the Summarize tool to concatenate your results together, you can use a '\n' separator to signal that you want each record on a new line. 

 

Sample Data:

Maskell_Rascal_0-1621866030626.png

 

Output:

Maskell_Rascal_1-1621866066251.png

 

If this solves your issue please mark answer as correct, if not let me know!

 

Thanks!
Phil

 

Thableaus
17 - Castor
17 - Castor

Hi @ryanmor24 

 

How does the data look like concatenated? Is it with commas (,)?

 

Depending on how this looks like you could just replace commas with line breaks using REGEX

 

REGEX_Replace([Field], ",", "\n")

 

Cheers,

Labels