So I just received a request to change up something within our db and I can't figure out how to do it because I keep getting an error. I'll lay out the scenario for you:
It is essentially a task list that with a table called "Assignments" within an exisitng db. As far as who the task is assigned to, I have a lookup field referring to table "Contacts", where there is ID, fName, lName.
Everything worked well.
Now the field in the "Assignments" table needs to allow multiple values for collaboration and so that the report will spit out the same assignment for the different names associated with it (the report is grouped by fname) but that isn't the problem. The problem lies in the fact that the relationship of Contacts to Assignments is based off of the ID number, but the name is displayed in the lookup field. And so if I try to convert the "assignedTo" field to a multiple values field, I get the following error:
So, is there any way around this? I know multiple field values are not the friendliest things in the world, but it would seem that this is a situation where it should work well. If I can't do it via multiple values, how would I allow more than one person per assignment?
I am trying to stay within the framework of what is alredy built, but of course changes are necessary for things to work.
It is essentially a task list that with a table called "Assignments" within an exisitng db. As far as who the task is assigned to, I have a lookup field referring to table "Contacts", where there is ID, fName, lName.
Everything worked well.
Now the field in the "Assignments" table needs to allow multiple values for collaboration and so that the report will spit out the same assignment for the different names associated with it (the report is grouped by fname) but that isn't the problem. The problem lies in the fact that the relationship of Contacts to Assignments is based off of the ID number, but the name is displayed in the lookup field. And so if I try to convert the "assignedTo" field to a multiple values field, I get the following error:
I understand the message to a degree. But I need my lookup field to display a name and not a number. From what I see, this error is basically telling me this is not possible.Columns that accept multiple values for a record cannot be included in a mulitple-column relationship.
So, is there any way around this? I know multiple field values are not the friendliest things in the world, but it would seem that this is a situation where it should work well. If I can't do it via multiple values, how would I allow more than one person per assignment?
I am trying to stay within the framework of what is alredy built, but of course changes are necessary for things to work.