I'm not sure if what I'm asking is possible to accomplish with excel. But what I would like to do is on sheet one copy list names that meet specific criteria based on IF AND OR of contents of columns next to their names.
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Y[/TD]
[TD]N[/TD]
[TD]M[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]jim[/TD]
[TD]1[/TD]
[TD][/TD]
[TD]1[/TD]
[TD]y[/TD]
[/TR]
[TR]
[TD]jeff[/TD]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]y[/TD]
[/TR]
[TR]
[TD]bill[/TD]
[TD][/TD]
[TD]1[/TD]
[TD][/TD]
[TD]n[/TD]
[/TR]
[TR]
[TD]sam[/TD]
[TD][/TD]
[TD]1[/TD]
[TD][/TD]
[TD]y[/TD]
[/TR]
[TR]
[TD]doug[/TD]
[TD][/TD]
[TD][/TD]
[TD]1[/TD]
[TD]y[/TD]
[/TR]
</tbody>[/TABLE]
So the idea is that the columns to the right of the names are in order of priority between Y, N, M values from the name column would be copied onto another sheet, and if the YES column has an "n" that row can be ignored. Below would be the expected results, the name list is dynamic, but the columns and their order of priority are static.
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]y[/TD]
[TD]n[/TD]
[TD]m[/TD]
[/TR]
[TR]
[TD]jim[/TD]
[TD]sam[/TD]
[TD]doug[/TD]
[/TR]
[TR]
[TD]jeff[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Y[/TD]
[TD]N[/TD]
[TD]M[/TD]
[TD]YES[/TD]
[/TR]
[TR]
[TD]jim[/TD]
[TD]1[/TD]
[TD][/TD]
[TD]1[/TD]
[TD]y[/TD]
[/TR]
[TR]
[TD]jeff[/TD]
[TD]1[/TD]
[TD][/TD]
[TD][/TD]
[TD]y[/TD]
[/TR]
[TR]
[TD]bill[/TD]
[TD][/TD]
[TD]1[/TD]
[TD][/TD]
[TD]n[/TD]
[/TR]
[TR]
[TD]sam[/TD]
[TD][/TD]
[TD]1[/TD]
[TD][/TD]
[TD]y[/TD]
[/TR]
[TR]
[TD]doug[/TD]
[TD][/TD]
[TD][/TD]
[TD]1[/TD]
[TD]y[/TD]
[/TR]
</tbody>[/TABLE]
So the idea is that the columns to the right of the names are in order of priority between Y, N, M values from the name column would be copied onto another sheet, and if the YES column has an "n" that row can be ignored. Below would be the expected results, the name list is dynamic, but the columns and their order of priority are static.
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]y[/TD]
[TD]n[/TD]
[TD]m[/TD]
[/TR]
[TR]
[TD]jim[/TD]
[TD]sam[/TD]
[TD]doug[/TD]
[/TR]
[TR]
[TD]jeff[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]