Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe I should pay closer attention to my typing. Sorry.
Try this. Option Explicit Private Sub UserForm_Initialize() ComboBox2.AddItem "One" ComboBox2.AddItem "Two" ComboBox2.AddItem "Three" End Sub Private Sub CommandButton1_Click() Dim response As String Worksheets("Sheet1").Cells(1, 6).Value = ComboBox2.Text Worksheets("Sheet1").Cells(2, 6).Value = ComboBox2.Text MsgBox "One record written to Sheet1" response = MsgBox("Do you want to enter another record?", vbYesNo) If response = vbNo Then Unload Me End If End Sub *** Sent via Developersdex http://www.developersdex.com *** |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I fill a cell in a user form from a selection on same form? | Excel Discussion (Misc queries) | |||
Reading Data from a User Form. | Excel Programming | |||
Data Entry Alert in User Form | Excel Discussion (Misc queries) | |||
Trouble with editing data from a user form | Excel Programming | |||
How To: create a form for a user to enter data | Excel Programming |