Here's the situation: I have a spreadsheet with two columns, A and B. The cells of each column use Excel's Data Validation to have a drop down list within them.
A's cells have a drop down list with values [0, 1, 2, 3]. B's cells have a drop down list with values [True, False].
I would like to condition the values of the list within the cells of the B column based upon the selected value of the cell in the A column of the same row.
Here's precisely what I'd like to achieve: if a cell in A has a value 0 or 1, then the drop down list of the cell in B of the same row will only have one value, [True]. Otherwise, the cell in B of the same row has [True, False]. That is all.
I'm a programmer by profession but I have been humbled by VBA. I would be most grateful for any solution, whether it needs to use VBA or not. Thank you.