tryingbeginner
New Member
- Joined
- Jun 15, 2015
- Messages
- 9
I have a table that follows the same structure as below. Note that in my document it is a very large table (150 rows, 30 columns), so I would like to keep the general formatting of it.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Bob[/TD]
[TD][/TD]
[TD]Table[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Peter[/TD]
[TD]Bed[/TD]
[TD][/TD]
[TD]Couch[/TD]
[TD]Chair[/TD]
[/TR]
[TR]
[TD]Jeff[/TD]
[TD]Bed[/TD]
[TD]Table[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Grace[/TD]
[TD][/TD]
[TD][/TD]
[TD]Couch[/TD]
[TD]Chair[/TD]
[/TR]
[TR]
[TD]Tom[/TD]
[TD]Bed[/TD]
[TD][/TD]
[TD]Couch[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
In another sheet, I have a dropdown box where I can select any of the names in the first box. To the right of their name, I want something like the following table to be generated, where any item to the right of their name in the original table is now in a list.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name: Peter[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Bed[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Couch[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Chair[/TD]
[/TR]
</tbody>[/TABLE]
I've seen similar (kinda) examples with people using an array like =small(if(range=value, row(range), row()) but that won't be able to work for my application.
Anyone have any ideas with this one, or could point me in the right direction?
[TABLE="width: 500"]
<tbody>[TR]
[TD]Bob[/TD]
[TD][/TD]
[TD]Table[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Peter[/TD]
[TD]Bed[/TD]
[TD][/TD]
[TD]Couch[/TD]
[TD]Chair[/TD]
[/TR]
[TR]
[TD]Jeff[/TD]
[TD]Bed[/TD]
[TD]Table[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Grace[/TD]
[TD][/TD]
[TD][/TD]
[TD]Couch[/TD]
[TD]Chair[/TD]
[/TR]
[TR]
[TD]Tom[/TD]
[TD]Bed[/TD]
[TD][/TD]
[TD]Couch[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
In another sheet, I have a dropdown box where I can select any of the names in the first box. To the right of their name, I want something like the following table to be generated, where any item to the right of their name in the original table is now in a list.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name: Peter[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Bed[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Couch[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Chair[/TD]
[/TR]
</tbody>[/TABLE]
I've seen similar (kinda) examples with people using an array like =small(if(range=value, row(range), row()) but that won't be able to work for my application.
Anyone have any ideas with this one, or could point me in the right direction?