Hello Everyone,
I'm really having trouble solving this - it's driving me crazy.
I have a set of data with some duplicate ID's in column A. If the ID is the same, I would like to concatenate the values in the columns to the right with the rows below, but only if they're different. I found a couple of related questions on this site, but can't seem to relate it directly back to my issue here. I tried nested IF statements, but can only figure out how to compare 2 rows, if there are more than 2 duplicate IDs - my formula would not identify them and consolidate into 1 row.
I'd be extremely grateful for anyone who can help me out. See below for an example (not the actual data I'm working with):
[TABLE="width: 424"]
<colgroup><col><col><col></colgroup><tbody>[TR]
[TD]ID
[/TD]
[TD]Name[/TD]
[TD]Order[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Jack[/TD]
[TD]Chicken
[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Jill
[/TD]
[TD]Pork[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Jack[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Jack[/TD]
[TD]Rice[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jill[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jack[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jack[/TD]
[TD]Pork[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jill[/TD]
[TD]Rice
[/TD]
[/TR]
</tbody>[/TABLE]
Here's what I would like the final result to be:
[TABLE="width: 424"]
<colgroup><col><col><col></colgroup><tbody>[TR]
[TD]ID
[/TD]
[TD]Name[/TD]
[TD]Order[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Jack, Jill[/TD]
[TD]Chicken, Pork[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Jack[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Jack[/TD]
[TD]Rice[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jill, Jack[/TD]
[TD]Chicken, Pork, Rice[/TD]
[/TR]
</tbody>[/TABLE]
I'm really having trouble solving this - it's driving me crazy.
I have a set of data with some duplicate ID's in column A. If the ID is the same, I would like to concatenate the values in the columns to the right with the rows below, but only if they're different. I found a couple of related questions on this site, but can't seem to relate it directly back to my issue here. I tried nested IF statements, but can only figure out how to compare 2 rows, if there are more than 2 duplicate IDs - my formula would not identify them and consolidate into 1 row.
I'd be extremely grateful for anyone who can help me out. See below for an example (not the actual data I'm working with):
[TABLE="width: 424"]
<colgroup><col><col><col></colgroup><tbody>[TR]
[TD]ID
[/TD]
[TD]Name[/TD]
[TD]Order[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Jack[/TD]
[TD]Chicken
[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Jill
[/TD]
[TD]Pork[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Jack[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Jack[/TD]
[TD]Rice[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jill[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jack[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jack[/TD]
[TD]Pork[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jill[/TD]
[TD]Rice
[/TD]
[/TR]
</tbody>[/TABLE]
Here's what I would like the final result to be:
[TABLE="width: 424"]
<colgroup><col><col><col></colgroup><tbody>[TR]
[TD]ID
[/TD]
[TD]Name[/TD]
[TD]Order[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Jack, Jill[/TD]
[TD]Chicken, Pork[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Jack[/TD]
[TD]Chicken[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Jack[/TD]
[TD]Rice[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jill, Jack[/TD]
[TD]Chicken, Pork, Rice[/TD]
[/TR]
</tbody>[/TABLE]