
Partner - Creator III
2022-09-02
04:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Limit Load
Hi,
I have a QVD , I want to limit the to 600 rows based on below condition to fields;
1) Period = 2020, 2021
2) Product = Bike, Car, Cycle
Note: Each product 200 rows and should be 100 rows for2020 and 100 rows for 2021.
How to do that in Data Load editior?
Anyone, Please help!!
Labels (13)
Labels
3,172 Views
1 Solution
Accepted Solutions

Partner - Specialist II
2022-09-02
04:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Peraps a script like :
for each vPeriod in '2020', '2021'
for each vProduct in 'Bike', 'Car', 'Cycle'
First 100
Load * From QVD Where Period='$(vPeriod)' and Product = '$(vProduct)';
next vProduct
next vPeriod
Help users find answers! Don't forget to mark a solution that worked for you!
1 Reply

Partner - Specialist II
2022-09-02
04:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Peraps a script like :
for each vPeriod in '2020', '2021'
for each vProduct in 'Bike', 'Car', 'Cycle'
First 100
Load * From QVD Where Period='$(vPeriod)' and Product = '$(vProduct)';
next vProduct
next vPeriod
Help users find answers! Don't forget to mark a solution that worked for you!
