Is there a way to perform a lookup for each row in a collection separately? For example:
Row 1 User enters ID#, lookup fills Name
Row 2 User enters another ID#, lookup fills that Name
Currently, it is appending the new lookup to the previous one for all rows. So it looks like this:
Row 1 ID#1 Name1
Add Row 2 info
Row1 ID#1 Name1, Name2
Row2 ID#2 Name1, Name2