I'm very new to Excel, but I have the following situation:
I have Sheet1 which contains:
- user-entered numeric values in
column_A
- user-selected YES/NO dropdown list in
column_B
, which references a two-item list (YES,NO) on a hiddenSheet3
.
I have Sheet2
which is to contain:
- A user-selected drop-down containing all unique values in
Sheet1:column_A
for rows where the user has chosen to select "YES" to the YES/NO dropdown inSheet1:column_B
.
So far, I have a named list Column_A_Values
with the following formula:
=OFFSET(`Sheet1`!$A$1,0,0, COUNTA(Sheet1!$A$1:$A$1000)+99)
On a hidden Sheet3
, I have the following formula in Sheet3!column_B
which attempts to generate a list of unique values where the user has chosen to select "YES" to the YES/NO dropdown list in Sheet1:column_B
. This doesn't work, but I believe it's on the right track:
=INDEX(Column_A_Values,MATCH(0,COUNTIF($B$1:$B15,Column_A_Values)+("YES"<>Sheet1$B15),0))
Finally, I have a dropdown list on sheet2 referencing a named list containing the following formula:
=OFFSET(Sheet3!$B$2, 0, 0, COUNT(IF(Sheet3!$B$2:$B$1000="", "", 1)), 1)
I apologize if any of this isn't clear, and will clarify wherever necessary. I would appreciate any assistance anyone is willing to provide. I have not been able to get the 2nd formula working correctly, so that is my priority, but I am am also grateful for any advice you might have regarding superior approaches to obtain the bulleted functionality for Sheet2
. Again, I am very new to Excel, but I'm learning as I go.