I have a worksheet ("A") with a System X Control (Combo Box). On this worksheet vbe the code for Private Sub ComboBox1_Change() is:
Worksheet("A").Range("A12").Value = Worksheet("A").Range("O12").Value
Range("O12") contains a formula to derive a value based on the Combo Box selection. The user-displayed Range("A12") adopts the value of "O12" when a new selection is made (this selection and copy works perfectly) - the purpose is to allow the user to subsequently edit its value without corrupting the source formula.
The problem is that when I edit Range("A12") Private Sub ComboBox1_Change() is invoked to return "A12" to the unedited value! Can anyone help, please?
David
Bookmarks