Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have the following code which initializes a combo box
For Each cMonth In ws.Range("Month") With Me.cboPlanMonth .AddItem cMonth.Value .List(.ListCount - 1, 1) = cMonth.Offset(0, 1).Value End With With Me.cboActMonth .AddItem cMonth.Value .List(.ListCount - 1, 1) = cMonth.Offset(0, 1).Value End With Next cMonth What I want to do is if the rangename ActMonth is not empty, populate the value for cboActMonth with that value. I'd also like to allow the pulldown if it's possible. How would I do that? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Assuming you are uisng Ron's first suggestion:
if not isempty(Range("ActMonth")) then With Me.cboActMonth .Value = month(range("ActMonth")) end with End if -- Regards, Tom Ogilvy "Barb Reinhardt" wrote: I have the following code which initializes a combo box For Each cMonth In ws.Range("Month") With Me.cboPlanMonth .AddItem cMonth.Value .List(.ListCount - 1, 1) = cMonth.Offset(0, 1).Value End With With Me.cboActMonth .AddItem cMonth.Value .List(.ListCount - 1, 1) = cMonth.Offset(0, 1).Value End With Next cMonth What I want to do is if the rangename ActMonth is not empty, populate the value for cboActMonth with that value. I'd also like to allow the pulldown if it's possible. How would I do that? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Form question | Excel Discussion (Misc queries) | |||
Form Question | Excel Programming | |||
Form Question | Excel Programming | |||
Form question | Excel Programming | |||
ser form question | Excel Programming |