Greetings,
I have a long list of Account IDs and "interests" that I need to use to validate data in another table, by that Account ID. For any given Account ID I can have from one to 15 Interests associated.
If I use vlookup I am only going to get the first match, but I need to report all of the interests of Contacts associated with each ID (in a single cell, preferably). I am wondering if there is a simple(ish) way that I can concatenate any Interest that matches the Account ID of a Contact in my table.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Contact[/TD]
[TD]Account ID[/TD]
[TD]Interests[/TD]
[/TR]
[TR]
[TD]Jill[/TD]
[TD]abc1234[/TD]
[TD]Jazz, Rock, Swing[/TD]
[/TR]
[TR]
[TD]Jack[/TD]
[TD]def5678[/TD]
[TD]Swing, Bluegrass[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Account ID[/TD]
[TD]Interest[/TD]
[/TR]
[TR]
[TD]abc1234[/TD]
[TD]Jazz[/TD]
[/TR]
[TR]
[TD]abc1234[/TD]
[TD]Rock[/TD]
[/TR]
[TR]
[TD]abc1234[/TD]
[TD]Swing[/TD]
[/TR]
[TR]
[TD]def5678[/TD]
[TD]Swing[/TD]
[/TR]
[TR]
[TD]def5678[/TD]
[TD]Bluegrass[/TD]
[/TR]
</tbody>[/TABLE]
I am about to get all crazy bad and use subtotals to transpose columns to rows (MANUALLY) and create the concatenated result in my lookup table, but it is like 150,000 rows. I want to either automate creating the combined lookup table, or figure out how to get a "one to many" lookup.
I have a long list of Account IDs and "interests" that I need to use to validate data in another table, by that Account ID. For any given Account ID I can have from one to 15 Interests associated.
If I use vlookup I am only going to get the first match, but I need to report all of the interests of Contacts associated with each ID (in a single cell, preferably). I am wondering if there is a simple(ish) way that I can concatenate any Interest that matches the Account ID of a Contact in my table.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Contact[/TD]
[TD]Account ID[/TD]
[TD]Interests[/TD]
[/TR]
[TR]
[TD]Jill[/TD]
[TD]abc1234[/TD]
[TD]Jazz, Rock, Swing[/TD]
[/TR]
[TR]
[TD]Jack[/TD]
[TD]def5678[/TD]
[TD]Swing, Bluegrass[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Account ID[/TD]
[TD]Interest[/TD]
[/TR]
[TR]
[TD]abc1234[/TD]
[TD]Jazz[/TD]
[/TR]
[TR]
[TD]abc1234[/TD]
[TD]Rock[/TD]
[/TR]
[TR]
[TD]abc1234[/TD]
[TD]Swing[/TD]
[/TR]
[TR]
[TD]def5678[/TD]
[TD]Swing[/TD]
[/TR]
[TR]
[TD]def5678[/TD]
[TD]Bluegrass[/TD]
[/TR]
</tbody>[/TABLE]
I am about to get all crazy bad and use subtotals to transpose columns to rows (MANUALLY) and create the concatenated result in my lookup table, but it is like 150,000 rows. I want to either automate creating the combined lookup table, or figure out how to get a "one to many" lookup.