keelaboosa
New Member
- Joined
- Apr 3, 2018
- Messages
- 35
Is it possible to select a subset of table headers to use as a data validation list in another cell?
I've got the following table named "Notes":
[TABLE="class: grid, width: 750"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[TD="align: center"]D[/TD]
[TD="align: center"]E[/TD]
[TD="align: center"]F[/TD]
[TD="align: center"]G[/TD]
[TD="align: center"]H[/TD]
[TD="align: center"]I[/TD]
[TD="align: center"]J[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD="align: center"]NOTES: UNLESS OTHERWISE SPECIFIED[/TD]
[TD="align: center"]GENERAL ARRANGEMENT[/TD]
[TD="align: center"]INSTALLATION[/TD]
[TD="align: center"]ASSEMBLY[/TD]
[TD="align: center"]CABLE ASSEMBLY[/TD]
[TD="align: center"]FABRICATION[/TD]
[TD="align: center"]ALTERED ITEM[/TD]
[TD="align: center"]SCHEMATIC[/TD]
[TD="align: center"]PIPING DIAGRAM[/TD]
[TD="align: center"]VENDOR ITEM[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]INTERPRET DRAWING PER ASME Y14.1[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]BREAK SHARP EDGES .005 MAX[/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"]X[/TD]
[/TR]
</tbody>[/TABLE]
I would like to use all except the first header as a data validation list. I've tried
which evaluates to
but it fails when I try to use the formula as the data validation list.
Is there a way to do this without duplicating the header row as data in another table?
I've got the following table named "Notes":
[TABLE="class: grid, width: 750"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[TD="align: center"]D[/TD]
[TD="align: center"]E[/TD]
[TD="align: center"]F[/TD]
[TD="align: center"]G[/TD]
[TD="align: center"]H[/TD]
[TD="align: center"]I[/TD]
[TD="align: center"]J[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD="align: center"]NOTES: UNLESS OTHERWISE SPECIFIED[/TD]
[TD="align: center"]GENERAL ARRANGEMENT[/TD]
[TD="align: center"]INSTALLATION[/TD]
[TD="align: center"]ASSEMBLY[/TD]
[TD="align: center"]CABLE ASSEMBLY[/TD]
[TD="align: center"]FABRICATION[/TD]
[TD="align: center"]ALTERED ITEM[/TD]
[TD="align: center"]SCHEMATIC[/TD]
[TD="align: center"]PIPING DIAGRAM[/TD]
[TD="align: center"]VENDOR ITEM[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]INTERPRET DRAWING PER ASME Y14.1[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]BREAK SHARP EDGES .005 MAX[/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"]X[/TD]
[TD="align: center"]X[/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"]X[/TD]
[/TR]
</tbody>[/TABLE]
I would like to use all except the first header as a data validation list. I've tried
Code:
=OFFSET(NOTES[#Headers],0,1,1,COUNTA(NOTES[#Headers])-1)
Code:
={"GENERAL ARRANGEMENT","INSTALLATION","ASSEMBLY","CABLE ASSEMBLY","FABRICATION","ALTERED ITEM","SCHEMATIC","PIPING DIAGRAM","VENDOR ITEM"}
Is there a way to do this without duplicating the header row as data in another table?