Validating Entries VBA

cmxulb

Board Regular
Joined
Nov 24, 2020
Messages
52
Office Version
  1. 365
Platform
  1. Windows
Hi All,
Currently, no field can be empty, when I hit save. My question is, how can I make it so that when Primed is selected and any other fields are empty it would auto writes N/A on the database when I click save?


1631882667522.png







Function ValidateEntries() As Boolean

ValidateEntries = True

Dim iMaterialID As Variant

Dim sh As Worksheet

Set sh = ThisWorkbook.Sheets("Print")

iMaterialID = frmForm.txtMaterialID.Value

With frmForm

'Default Color

.txtMaterialID.BackColor = vbWhite
.cmbValve.BackColor = vbWhite
.txtintfineflow.BackColor = vbWhite
.txtintcoarseflow.BackColor = vbWhite
.txtFineFlow.BackColor = vbWhite
.txtCoarseFLow.BackColor = vbWhite
.txtComments.BackColor = vbWhite
'--------------------------------

If Trim(.txtMaterialID.Value) = "" Then

MsgBox "Please enter Material ID.", vbOKOnly + vbInformation, "Material ID"
ValidateEntries = False
.txtMaterialID.BackColor = vbRed
.txtMaterialID.SetFocus
Exit Function

End If

'Validating Duplicate Entries

If Not sh.Range("B:B").Find(what:=iMaterialID, lookat:=xlWhole) Is Nothing Then

MsgBox "Duplicate Material ID found.", vbOKOnly + vbInformation, "Material ID"
ValidateEntries = False
.txtMaterialID.BackColor = vbRed
.txtMaterialID.SetFocus
Exit Function

End If

If Trim(.txtComments.Value) = "" Then

MsgBox "Please enter Comments.", vbOKOnly + vbInformation, "Comments"
ValidateEntries = False
.txtComments.BackColor = vbRed
.txtComments.SetFocus
Exit Function

End If


'Validating Scale


If .optLarge.Value = False And .optSmall.Value = False And .optBoth.Value = False Then

MsgBox "Please select Scale.", vbOKOnly + vbInformation, "Scale"
ValidateEntries = False
Exit Function

End If


If .CheckYes.Value = False And .CheckNo.Value = False Then

MsgBox "Please select Locked Yes or No.", vbOKOnly + vbInformation, "Locked"
ValidateEntries = False
Exit Function

End If


If .CheckYess.Value = False And .CheckNoo.Value = False Then

MsgBox "Please select Locked Yes or No.", vbOKOnly + vbInformation, "Locked"
ValidateEntries = False
Exit Function

End If



If Trim(.cmbValve.Value) = "" Then

MsgBox "Please select Valve from drop-down.", vbOKOnly + vbInformation, "Valve"
ValidateEntries = False
.cmbValve.BackColor = vbRed
.cmbValve.SetFocus
Exit Function

End If


If Trim(.txtFineFlow.Value) = "" Then

MsgBox "Please enter Fine Flow.", vbOKOnly + vbInformation, "Fine Flow"
ValidateEntries = False
.txtFineFlow.BackColor = vbRed
.txtFineFlow.SetFocus
Exit Function

End If

If Trim(.txtCoarseFLow.Value) = "" Then

MsgBox "Please enter Coarse Flow.", vbOKOnly + vbInformation, "Coarse Flow"
ValidateEntries = False
.txtCoarseFLow.BackColor = vbRed
.txtCoarseFLow.SetFocus
Exit Function

End If


If Trim(.txtintcoarseflow.Value) = "" Then

MsgBox "Please enter Int Coarse Flow.", vbOKOnly + vbInformation, " Int Coarse Flow"
ValidateEntries = False
.txtintcoarseflow.BackColor = vbRed
.txtintcoarseflow.SetFocus
Exit Function

End If


If Trim(.txtintfineflow.Value) = "" Then

MsgBox "Please enter Int Fine Flow.", vbOKOnly + vbInformation, "Int Fine Flow"
ValidateEntries = False
.txtintfineflow.BackColor = vbRed
.txtintfineflow.SetFocus
Exit Function

End If
End With



End Function
 

Attachments

  • 1631881633707.png
    1631881633707.png
    24.1 KB · Views: 14

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Add code to fill empty textboxes.

VBA Code:
If chkPrimeYes.Value = True Then ' "Yes" box is checked
    SetEmptyTextBoxesToNA
End If

End Sub

VBA Code:
Private Sub SetEmptyTextBoxesToNA()
    Dim Ctrl As Control
   
    For Each Ctrl In Me.Controls    ' "Me" references the UserForm
        If TypeName(Ctrl) = "TextBox" Then
            If Trim(Ctrl.Text) = "" Then
                Ctrl.Text = "N/A"
            End If
        End If
    Next Ctrl
End Sub


ps. Please try to use code tags when posting code.
 
Upvote 0
Add code to fill empty textboxes.

VBA Code:
If chkPrimeYes.Value = True Then ' "Yes" box is checked
    SetEmptyTextBoxesToNA
End If

End Sub

VBA Code:
Private Sub SetEmptyTextBoxesToNA()
    Dim Ctrl As Control
  
    For Each Ctrl In Me.Controls    ' "Me" references the UserForm
        If TypeName(Ctrl) = "TextBox" Then
            If Trim(Ctrl.Text) = "" Then
                Ctrl.Text = "N/A"
            End If
        End If
    Next Ctrl
End Sub


ps. Please try to use code tags when posting code.
Add code to fill empty textboxes.

VBA Code:
If chkPrimeYes.Value = True Then ' "Yes" box is checked
    SetEmptyTextBoxesToNA
End If

End Sub

VBA Code:
Private Sub SetEmptyTextBoxesToNA()
    Dim Ctrl As Control
  
    For Each Ctrl In Me.Controls    ' "Me" references the UserForm
        If TypeName(Ctrl) = "TextBox" Then
            If Trim(Ctrl.Text) = "" Then
                Ctrl.Text = "N/A"
            End If
        End If
    Next Ctrl
End Sub


ps. Please try to use code tags when posting code.
Where do I put add those codes? and do you have to use both codes?
 
Upvote 0
1. There is a button on your form shown as "Save". I would recommend putting the code checking the status of your Primed "Yes" checkbox in the button click event for the Save button. Example:

VBA Code:
Private Sub cmdSave_Click()
    If chkPrimeYes.Value = True Then ' "Yes" box is checked
        SetEmptyTextBoxesToNA
    End If
End Sub

with the subroutine SetEmptyTextBoxesToNA located in the same code module.

Note that cmdSave is the name of MY button control. You will need to use the name of your button control. Similarly chkPrimeYes is the name of my "Yes" Primed checkbox. You will need to change it to your name.

2. Yes both pieces of code are needed.
 
Upvote 0
1. There is a button on your form shown as "Save". I would recommend putting the code checking the status of your Primed "Yes" checkbox in the button click event for the Save button. Example:

VBA Code:
Private Sub cmdSave_Click()
    If chkPrimeYes.Value = True Then ' "Yes" box is checked
        SetEmptyTextBoxesToNA
    End If
End Sub

with the subroutine SetEmptyTextBoxesToNA located in the same code module.

Note that cmdSave is the name of MY button control. You will need to use the name of your button control. Similarly chkPrimeYes is the name of my "Yes" Primed checkbox. You will need to change it to your name.

2. Yes both pieces of code are needed.
Thanks for the reply

it did te N/A but at the end it comes up with this error
1632157754680.png
 
Upvote 0
1. There is a button on your form shown as "Save". I would recommend putting the code checking the status of your Primed "Yes" checkbox in the button click event for the Save button. Example:

VBA Code:
Private Sub cmdSave_Click()
    If chkPrimeYes.Value = True Then ' "Yes" box is checked
        SetEmptyTextBoxesToNA
    End If
End Sub

with the subroutine SetEmptyTextBoxesToNA located in the same code module.

Note that cmdSave is the name of MY button control. You will need to use the name of your button control. Similarly chkPrimeYes is the name of my "Yes" Primed checkbox. You will need to change it to your name.

2. Yes both pieces of code are needed.
1632165407561.png
 

Attachments

  • 1632165381336.png
    1632165381336.png
    60.3 KB · Views: 8
Upvote 0
It would have thrown an error regardless of the change. iRow is declared as Long, while textboxes hold string values.

Try changing these lines:

VBA Code:
If frmForm.txtRowNumber = "" or frmForm.txtRowNumber = "N/A" Then
    iRow = [CountA()Database!A:A] + 1
Else
    iRow = CLng(frmForm.txtRowNumber.Value)
End If
 
Upvote 0
It would have thrown an error regardless of the change. iRow is declared as Long, while textboxes hold string values.

Try changing these lines:

VBA Code:
If frmForm.txtRowNumber = "" or frmForm.txtRowNumber = "N/A" Then
    iRow = [CountA()Database!A:A] + 1
Else
    iRow = CLng(frmForm.txtRowNumber.Value)
End If
The N/A works! thanks... but only for material, comments, int fine flow, int coarse flow, fine flow, and coarse flow.

How would you do it for Scale, Valve Type, and for locked to auto write no
 
Upvote 0
Try:

VBA Code:
Private Sub SetEmptyTextBoxesToNA()
    Dim Ctrl As Control
   
    For Each Ctrl In Me.Controls    ' "Me" references the UserForm
        If TypeName(Ctrl) = "TextBox" Then
            If Trim(Ctrl.Text) = "" Then
                Ctrl.Text = "N/A"
            End If
        End If
    Next Ctrl
    
    Me.optBoth.Value = True
    Me.cmbValve.Value = "N/A"
    Me.CheckYes.Value = False
    Me.CheckNo.Value = True
    
End Sub

By the way, I noticed you have both CheckYes and CheckYess (Locked and Prime I suppose), I don't know which is which as both has the same message box prompt.
 
Upvote 0
Try:

VBA Code:
Private Sub SetEmptyTextBoxesToNA()
    Dim Ctrl As Control
  
    For Each Ctrl In Me.Controls    ' "Me" references the UserForm
        If TypeName(Ctrl) = "TextBox" Then
            If Trim(Ctrl.Text) = "" Then
                Ctrl.Text = "N/A"
            End If
        End If
    Next Ctrl
   
    Me.optBoth.Value = True
    Me.cmbValve.Value = "N/A"
    Me.CheckYes.Value = False
    Me.CheckNo.Value = True
   
End Sub

By the way, I noticed you have both CheckYes and CheckYess (Locked and Prime I suppose), I don't know which is which as both has the same message box prompt.
Yes! nice thanks man!..Yea CheckYes is "Locked"
 
Upvote 0

Forum statistics

Threads
1,216,110
Messages
6,128,896
Members
449,477
Latest member
panjongshing

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