combobox
Rowsource needs to be text.
so try:
cmbcc.RowSource = Sheets("Coding").Range("B4:B12").Address
or
cmbcc.RowSource = "Coding!" & Sheets("Coding").Range("B4:B12").Address
make sure it is all on one line...
--
sb
"scrabtree" wrote in message
...
It is a combobox from the controls toolbar. Below is the
change event code I have wrote. The program keeps
stopping, thought, and highlighting: "cmbcc.RowSource =
Sheets("Coding").Range("B4:B12")"
Private Sub cmbmajorarea_Change()
If cmbmajorarea.Value = "Environmental" Then
cmbcc.RowSource = Sheets("Coding").Range("B4:B12")
Else
cmbcc.Value = "2"
End If
End Sub
|