Selecting the input with specific header
- 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
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
- Labels:
- Developer Tools
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Rafiuddin_333 another option
