I have a table where each row has a single user reference. I want to reference the whole column in another table so that all of the users are brought into all the cells in the other table. For instance:
User Table
- Billy
- Jaclyn
- Lane
New Table
- Billy, Jaclyn, Lane
- Billy, Jaclyn, Lane
- Billy, Jaclyn, Lane
The problem though is that when I reference the User Table all of the users are brought in as one single value and it throws the error that “Billy, Jaclyn, Lane” is not a valid user because it sees all that as a continual string instead of three different users. Any thoughts, anyone?