Alert: There is a planned Community maintenance outage October 16th from approximately 10 - 11 PM PST. During this time the Alteryx Community will be inaccessible. Thank you for your understanding!

Alteryx Designer Desktop Discussions

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

How to concatenate multiple rows

Anjankumar2021
8 - Asteroid

Hi All,

 

could someone pls assist on the below issue?

 

Input:

 

Table-A

NameDate
A28/08/2024
B28/08/2024
C28/08/2024
A28/08/2024

 

Table-B  
NameProduct%
AMSBI100
AAlteryx100
AJava99
ANet55
AMSBI100
BJava100
BNet85
BMSBI65
CNet100
CNet100
CNet100

 

Required output: In Table B will concatenate products if we have multiple product with 100 % for unique Name(A- MSBI/Alteryx@100). i need unique Product with 100( Product@100) in comment column in Table A .

will ignore if product percentage is less than 100

 

NameDateCOMMENT
A28/08/2024MSBI/Alteryx@100
B28/08/2024Java@100
C28/08/2024Net@100
A28/08/2024MSBI/Alteryx@100
3 REPLIES 3
KGT
11 - Bolide

Summarize tool will achieve this grouping on Name & Percentage, concatenate on Product.

Then filter for percentage = 100. You may need to use a formula then to get your exact format of the comment column

Qiu
21 - Polaris
21 - Polaris

@Anjankumar2021 
A quick sample similar with @KGT approach and add one Record Tool to maintain the order at the end.

0828-Anjankumar2021.png

NeoInfiniTech
10 - Fireball

Hello  @Anjankumar2021,

 

I prepared two different solutions in the workflow attached.

 

One ignores the repeating row with same date for A (28/08/2024) and outputs 3 rows, while the other also takes into account the repeating row and outputs 4 rows.

 

If the 4th row for the date table was "A | 29/08/2024" for example, both containers would output 4 rows.

Labels