I need to include a specific number range in my data set.
- 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 Guys,
Sorry i am new to this Alteryx and i only need to include a certain range of numbers from my "material" column in my data set.
i have a range of numbers between 2500000000 - 2900000000 and i only want to use 2700000000 - 2799999999.
What is the best way to do this?
Thanks
Alex
- Labels:
- Best Practices
- Datasets
- Workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Alexgray25
I would say filter tool.
https://community.alteryx.com/t5/Interactive-Lessons/Filtering-Data/ta-p/76301
But i am not completely clear with the requirement 😅
Can you provide some sample input and expected output it will help us get a better understanding of the usecase.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
use a filter tool with a custom formula: [material] >= 2700000000 && [material] <= 2799999999
This is a big data set, so remove or disable unneeded browse tools to have it run faster.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks Terry worked perfectly!
