Join the Inspire AMA with Joshua Burkhow, March 31-April 4. Ask, share, and connect with the Alteryx community!

Alteryx Designer Desktop Discussions

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

Selecting the input with specific header

Rafiuddin_333
7 - Meteor

Hello All,

I have a data set which is not constant and keeps on changing and it looks like this for example

Product codes
 
Product A
123
45
786
 
 
Product B
556
4885
786
 
Product C
 
2223
56
856

 

Question: Is there any way that in Alteryx to select the data only from "Product C" (Based on above example). The data keeps on changing so I cannot use "Input tool parameter > Select from line item"

Thank you very much for your time and effort

Regards,
Rafi

3 REPLIES 3
leonhekkert
8 - Asteroid

Are you always looking for info on Product C? And can the numeric values be summed, or do they represent different kind of measures?

 

What you could do is use a multi-row tool to figure out which rows belong to which product. 
I created a new column in the multi-row called 'ProductNr' and usesd this expression: If Contains([Product codes], 'Product') Then [Row-1:ProductNr] +1 else [Row-1:ProductNr] endif.

 

Then you can filter, join or whatever you like to do then.

flying008
15 - Aurora

Hi, @Rafiuddin_333 

 

You only need input all then filter the unless rows.

 

录制_2025_03_27_16_46_25_499.gif

 

 

binuacs
21 - Polaris

@Rafiuddin_333 another option

image.png

Labels
Top Solution Authors