Hi. I have two tables. The first is a list of users. The second is a list of projects. I need to loop through the user list and assign each one to a project. At the end of the user list it will just start over at the top until all the projects have someone assigned to it. What is the best way to do this?
Table1 Users
User1
User2
User3
Assignments
Project Assigned To
Project1
Project2
Project3
Project4
Project5
Project6
After processing.
Project Assigned To
Project1 User1
Project2 User2
Project3 User3
Project4 User1
Project5 User2
Project6 User3
Table1 Users
User1
User2
User3
Assignments
Project Assigned To
Project1
Project2
Project3
Project4
Project5
Project6
After processing.
Project Assigned To
Project1 User1
Project2 User2
Project3 User3
Project4 User1
Project5 User2
Project6 User3