SOLVED
Sample Tool
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
ktberger_2020
7 - Meteor
‎03-23-2022
01:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have rows of inventory data sorted by NBV. I would like to return 50 total rows of data by pulling 20 rows where the NBV is >=$500 and 30 rows where the NBV is <$500; however, I have some instances where I don't have a total of 20 rows >=$500. How would I be able to fill in the missing rows of >=$500 with extra <$500 rows so that I will always return the desired 50 total rows?
Solved! Go to Solution.
Labels:
- Labels:
- Preparation
2 REPLIES 2
17 - Castor
‎03-23-2022
02:53 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @ktberger_2020 ,
Here is an example for you.
1. You order your dataset in a descending order for NBV
2. Separate the first 20 rows no matter what
3. Join tool to remove those 20 from your dataset
4. Filter rows <500
5. Sample the first 30
6. Done!
Best,
Fernando Vizcaino
‎03-25-2022
01:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This works for me. Thanks.
