Elegabalus
Programmer
I've got dataset that gets a list of employees from my database (dsFullList).
I've got a second dataset that gets a list of employees that meet certain criteria (dsCriteriaList).
How can I compare these two datasets? I want to have some logic that basically states: foreach record in dsCriteriaList that matches a record in dsFullList, then...
For instance, for the dsFullList:
For the dsCriteriaList:
Any help is appreciated.
I've got a second dataset that gets a list of employees that meet certain criteria (dsCriteriaList).
How can I compare these two datasets? I want to have some logic that basically states: foreach record in dsCriteriaList that matches a record in dsFullList, then...
For instance, for the dsFullList:
Code:
EmployeeID
----------
1
2
3
4
5
6
7
8
9
For the dsCriteriaList:
Code:
EmployeeID
----------
1
2
3
Any help is appreciated.