multiple data validation selections - problem when manually editing

david763

New Member
Joined
Apr 3, 2012
Messages
31
Office Version
  1. 365
Platform
  1. Windows
Hi, same issue as thread here but no resolution.
VBA - Distinguishing when a cell is edited by a data validation list or free fromat text entry

I have VBA code to allow multiple data validation settings - working well except when it doesn't work at all (separate issue from this).

Turning off the error alert allows the previous entries to be edited (for example, when i just want to remove ONE previous entry). When i edit in cell, the result is that ALL existing entries are appended to the list again.

I need some code that appends selections from the drop down list as designed, but also allows for in cell edits without re-appending the whole list again.

Does this make sense?

Can anybody help?

Thanks
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
I don't know of a way to determine a drop down change from a manual edit with VBA code. A work-around would be to have a macro to disable Events when you want to edit a cell. Run the macro before you edit the cell to disable events, and run it again after you edit a cell to re-enable events.

VBA Code:
Sub Toggle_Events()
    Application.EnableEvents = Not Application.EnableEvents
End Sub

Assign it to a short cut key or button to make it easier to toggle.

Not a perfect solution, but it's all I've got.
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,208
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top