J
JoeBlow
I have a table with column-headings and row-headings. I would like to
convert this table into a list with three columns.
The the list will extract the row-heading, the column-heading, and the
cell-value. The cell value is a text string.
For example.
room# bed bathroom kitchen
1 king size hot tub microwave only
4 bunk bed toilet only full kitchen
32 single bed broken sink no kitchen
My goal is to generate a list that shows the row-value, the
column-value, and the corresponding cell-value for the ENTIRE table. I
don't suppose it matters the sequence the list is generated (eg. left to
right or top to bottom) because I could just sort it with SORT.
My list would look like this:
room# area cell-value
1 bed king size
1 bathroom hot tub
1 kitchen microwave only
4 bed bunk bed
4 bathroom toilet only
4 kitchen full kitchen
32 bed single bed
32 bathroom broken sink
32 kitchen no kitchen
Is this task possible?
Thanks for any help.
convert this table into a list with three columns.
The the list will extract the row-heading, the column-heading, and the
cell-value. The cell value is a text string.
For example.
room# bed bathroom kitchen
1 king size hot tub microwave only
4 bunk bed toilet only full kitchen
32 single bed broken sink no kitchen
My goal is to generate a list that shows the row-value, the
column-value, and the corresponding cell-value for the ENTIRE table. I
don't suppose it matters the sequence the list is generated (eg. left to
right or top to bottom) because I could just sort it with SORT.
My list would look like this:
room# area cell-value
1 bed king size
1 bathroom hot tub
1 kitchen microwave only
4 bed bunk bed
4 bathroom toilet only
4 kitchen full kitchen
32 bed single bed
32 bathroom broken sink
32 kitchen no kitchen
Is this task possible?
Thanks for any help.