I have a sheet that has a drop down validation list for one cell that has a sheet macro (VBA) to fill in certain cells in the sheet based on selection. In another cell, I have a drop down validation list that I need to allow 2 items to be selected, and also allow the user to deselect an item if it was selected in error. First issue is having multiple procedures on the Sheet in VBA. if I do this, it affects other procedures called by the Macro. Second issue is that I can either select multiple items in the second cell from its list, and allow deselection, but it won't limit to 2 items. OR I can have the second cell allow selecting 2 items, but I can't remove a selection that was made in error. How can I achieve the intended goal?