Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I have a new task and in order to achieve my goal i have to add all Kontos to the Groups, based on specific Intervals.
With this said, i will now show you what tables i have, and where i need to get.:
I have the following Tables:
SetTab:
Load
KontoFrom,
KontoTo,
SetName
Resident SetSource;
KontoTab:
Load
Konto
Resident KontoSource;
In the SetTab i have following data (Example):
KontoFrom | KontoTo | SetName
00100 | 00199 | Set1
00200 | 00299 | Set2
00100 | 00299 | Set3
In the kontoTab i have following data (Example):
Konto
00101
00120
00201
00222
Now, what i need is to assign each Konto to the Set (SetName) based on the Intervals (KontoFrom / KontoTo)
I have to get something like:
SetName | Konto
Set1 | 00101
Set1 | 00120
Set2 | 00201
Set2 | 00222
Set3 | 00101
Set3 | 00120
Set3 | 00201
Set3 | 00222
I have already tried the Interval Matching but i get an all to all connection... 😞
I will be really thankful when someone can suggest how can i achieve this result.
Try below
Script
Visualization
Regards,
Prashant Sangle
Try below
Script
Visualization
Regards,
Prashant Sangle
Hi PrashantSangle,
Thank you very much for your help. I have got it done. 🙂