Darbar,
Remove the entry from the linked cell property. Paste the following code into the Custom sheet's worksheet module:
You were sending "11" as text to a cell that requires a number. The code sends it to L6 as a number.![]()
Private Sub ComboBox1_Change() Worksheets(1).Range("L6") = Val(ComboBox1.Value) End Sub
HTH,
Maud
Bookmarks