Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This code used to work when it was pointed to a single cell. I can't get it
to work now that M2:N2 are merged. Any ideas how I can get round this? Unfortunately I need the cells merged :-( Private Sub Worksheet_Change(ByVal Target As Excel.Range) ' If Target.Count 1 Then Exit Sub If Target.Address = "$M$2:$N$2" Then If IsEmpty(Me.Range("M2:N2")) Then Me.ComboBox1.Enabled = False Else Me.ComboBox1.Enabled = True End If End If End Sub Any suggestions will be gratefully received Ian |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
"Resizing cells" code doesn't work with merged cells | Excel Discussion (Misc queries) | |||
Autofit Merged cell Code is changing the format of my merged cells | Excel Discussion (Misc queries) | |||
Script doesn't work when cells are merged. | Excel Discussion (Misc queries) | |||
Autofit doesn't work with merged cells | Excel Discussion (Misc queries) | |||
Code for autofit/merged cells doesn't work | Excel Programming |