Morning!
I am wanting to combine rows into a single cell if they meet a certain criteria. I have found an addin that does it for me BUT is only available on a trial basis.
I have 2 sets of data, ID numbers and modules trained in. I want to generate a list to tell me what module each person has completed.
My data looks something like this (very simplified version)...
[TABLE="width: 492"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]
<tbody>
</tbody>[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
But I would like to be able to work with it like this...
[TABLE="width: 0"]
<tbody>[TR]
[TD][/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]ID NUMBER[/TD]
[TD]MODULES[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]2301110069085[/TD]
[TD]Vegetable; Chicken[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]2906160031088[/TD]
[TD]Chicken; Fruit[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]3004145292081[/TD]
[TD]Fruit; Vegetable[/TD]
[/TR]
</tbody>[/TABLE]
Any suggestions? The best I can come up with myself is combining and "IF" and "CONCATENATE" formula but I only get the 1st module showing in the list in column D.
THANKS!!!
I am wanting to combine rows into a single cell if they meet a certain criteria. I have found an addin that does it for me BUT is only available on a trial basis.
I have 2 sets of data, ID numbers and modules trained in. I want to generate a list to tell me what module each person has completed.
My data looks something like this (very simplified version)...
[TABLE="width: 492"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]
A | B | |
1 | ID NUMBER | MODULE |
2 | 2301110069085 | Vegetable |
3 | 2906160031088 | Chicken |
4 | 3004145292081 | Fruit |
5 | 2301110069085 | Chicken |
6 | 2906160031088 | Fruit |
7 | 3004145292081 | Vegetable |
<tbody>
</tbody>
[TD][/TD]
[/TR]
</tbody>[/TABLE]
But I would like to be able to work with it like this...
[TABLE="width: 0"]
<tbody>[TR]
[TD][/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]ID NUMBER[/TD]
[TD]MODULES[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]2301110069085[/TD]
[TD]Vegetable; Chicken[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]2906160031088[/TD]
[TD]Chicken; Fruit[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]3004145292081[/TD]
[TD]Fruit; Vegetable[/TD]
[/TR]
</tbody>[/TABLE]
Any suggestions? The best I can come up with myself is combining and "IF" and "CONCATENATE" formula but I only get the 1st module showing in the list in column D.
THANKS!!!