Hello,
So I've been struggling with an issue, and I'm not sure if it's a bug, something that has to be done with JavaScript, or something I'm not doing properly(more than likely this is the issue).
I have a form where I gather a users first and last name inside of a collection from a lookup table. I then want to combine both the first and last name from that collection and add it to a list of anyone that might be listed in any subsequent additions to that collection.
I'm using a calculation on the "First and Last name" fields, but what I'm finding is that all of the "First name" fields get listed together and all of the "Last name" fields get listed together, and they are not getting listed like "First name, Last name", "First name, Last name".
Here are the calculations I'm trying to use to get the first and last names together:
=CONCATENATE(Index(Involved_Parties_Information.First_Name_1,ROW()), ", ", Index(Involved_Parties_Information.Last_Name_1,ROW()))
I'm pretty sure that the "calculations" I'm trying to use are correct as I've done similar things to this before and they work, but I'm either missing something or not understanding how those functions work, or they're not supposed to work that way inside of a collection. If there's only one set in the collection the calculation works just fine, but if there are multiple collections then that's where the issue arises.
A Picture of the Collection for reference.
Any help would be greatly appreciated.