Specific Userform boxes must have a value entered before transfer

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,227
Office Version
  1. 2007
Platform
  1. Windows
Hi,
Below is what i use to transfer some value from a userform to a worksheet.

Please advise how i can edit the code so that the following MUST have a value entered before transfer happens.

COMBOBOX 1,3 & 11
TEXTBOX 6

Thanks


Rich (BB code):
Private Sub CommandButton1_Click()

    ThisWorkbook.Worksheets("DATABASE").Range("B6") = Me.ComboBox1.Text ' REGISTRATION NUMBER
    ThisWorkbook.Worksheets("DATABASE").Range("C6") = Me.ComboBox2.Text ' BLANK USED
    ThisWorkbook.Worksheets("DATABASE").Range("D6") = Me.ComboBox3.Text ' VEHICLE
    ThisWorkbook.Worksheets("DATABASE").Range("E6") = Me.ComboBox4.Text ' BUTTONS
    ThisWorkbook.Worksheets("DATABASE").Range("F6") = Me.ComboBox5.Text ' ITEM SUPPLIED
    ThisWorkbook.Worksheets("DATABASE").Range("G6") = Me.ComboBox6.Text ' TRANSPONDER CHIP
    ThisWorkbook.Worksheets("DATABASE").Range("H6") = Me.ComboBox7.Text ' JOB ACTION
    ThisWorkbook.Worksheets("DATABASE").Range("I6") = Me.ComboBox8.Text ' PROGRAMMER USED
    ThisWorkbook.Worksheets("DATABASE").Range("J6") = Me.ComboBox9.Text ' KEY CODE
    ThisWorkbook.Worksheets("DATABASE").Range("K6") = Me.ComboBox10.Text ' BITING
    ThisWorkbook.Worksheets("DATABASE").Range("L6") = Me.ComboBox11.Text ' CHASIS NUMBER
    ThisWorkbook.Worksheets("DATABASE").Range("N6") = Me.ComboBox12.Text ' VEHICLE YEAR
    ThisWorkbook.Worksheets("DATABASE").Range("R6") = Me.TextBox1.Text ' ADDRESS 1st LINE
    ThisWorkbook.Worksheets("DATABASE").Range("S6") = Me.TextBox2.Text ' ADDRESS 2nd LINE
    ThisWorkbook.Worksheets("DATABASE").Range("T6") = Me.TextBox3.Text ' ADDRESS 3rd LINE
    ThisWorkbook.Worksheets("DATABASE").Range("U6") = Me.TextBox4.Text ' ADDRESS 4TH LINE
    ThisWorkbook.Worksheets("DATABASE").Range("V6") = Me.TextBox5.Text ' POST CODE
    ThisWorkbook.Worksheets("DATABASE").Range("W6") = Me.TextBox6.Text ' CONTACT NUMBER
    Unload DatabaseToSheet
End Sub
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Try this:

VBA Code:
Private Sub CommandButton1_Click()

  If ComboBox1.Value = "" Or ComboBox3.Value = "" Or _
    ComboBox11.Value = "" Or TextBox6.Value = "" Then
    MsgBox "Missing data", vbCritical
    Exit Sub
  End If
  
  With ThisWorkbook.Worksheets("DATABASE")
    .Range("B6") = Me.ComboBox1.Text ' REGISTRATION NUMBER
    .Range("C6") = Me.ComboBox2.Text ' BLANK USED
    .Range("D6") = Me.ComboBox3.Text ' VEHICLE
    .Range("E6") = Me.ComboBox4.Text ' BUTTONS
    .Range("F6") = Me.ComboBox5.Text ' ITEM SUPPLIED
    .Range("G6") = Me.ComboBox6.Text ' TRANSPONDER CHIP
    .Range("H6") = Me.ComboBox7.Text ' JOB ACTION
    .Range("I6") = Me.ComboBox8.Text ' PROGRAMMER USED
    .Range("J6") = Me.ComboBox9.Text ' KEY CODE
    .Range("K6") = Me.ComboBox10.Text ' BITING
    .Range("L6") = Me.ComboBox11.Text ' CHASIS NUMBER
    .Range("N6") = Me.ComboBox12.Text ' VEHICLE YEAR
    .Range("R6") = Me.TextBox1.Text ' ADDRESS 1st LINE
    .Range("S6") = Me.TextBox2.Text ' ADDRESS 2nd LINE
    .Range("T6") = Me.TextBox3.Text ' ADDRESS 3rd LINE
    .Range("U6") = Me.TextBox4.Text ' ADDRESS 4TH LINE
    .Range("V6") = Me.TextBox5.Text ' POST CODE
    .Range("W6") = Me.TextBox6.Text ' CONTACT NUMBER
  End With
  Unload DatabaseToSheet
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,453
Messages
6,124,930
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top