C
Corey
~~~~~~~~~~ Start CODE~~~~~~~~~~~~~~~~~
If ComboBox6.Value + ComboBox8.Value + ComboBox10.Value + ComboBox12.Value + ComboBox14.Value < TextBox47 Then
MsgBox "You have Not Used a Combination long enough" & vbCrLf & vbCrLf & vbTab & " to make up the Final Requirment.", vbYesNo, " ...."
End If
Unload Me
Sheets("Main").Select
Range("A1").Activate
End Sub
~~~~~~~~~~End Code ~~~~~~~~~~~~~~~~~~~
The above code is the last section of a userform i am creating.
What i am trying to do is prompt the user in case the values in the comboboxes 6-14,
DO NOT add up to the value placed in textbox47.
I want a VbYesNo prompt for the user to either continue with a Yes or
Modify the userform with a No.
But how can i get vbYesNo to Carry on with w Yes through the remaining code,
OR
Exit the vbYesNo and KEEP the Userform OPEN and then Activate the value in textbox47 for modifying,
WITHOUT exiting or unloading the values from the userform.
I am sure it is a simple placement of coding but it has eluded me to date.
Corey....
If ComboBox6.Value + ComboBox8.Value + ComboBox10.Value + ComboBox12.Value + ComboBox14.Value < TextBox47 Then
MsgBox "You have Not Used a Combination long enough" & vbCrLf & vbCrLf & vbTab & " to make up the Final Requirment.", vbYesNo, " ...."
End If
Unload Me
Sheets("Main").Select
Range("A1").Activate
End Sub
~~~~~~~~~~End Code ~~~~~~~~~~~~~~~~~~~
The above code is the last section of a userform i am creating.
What i am trying to do is prompt the user in case the values in the comboboxes 6-14,
DO NOT add up to the value placed in textbox47.
I want a VbYesNo prompt for the user to either continue with a Yes or
Modify the userform with a No.
But how can i get vbYesNo to Carry on with w Yes through the remaining code,
OR
Exit the vbYesNo and KEEP the Userform OPEN and then Activate the value in textbox47 for modifying,
WITHOUT exiting or unloading the values from the userform.
I am sure it is a simple placement of coding but it has eluded me to date.
Corey....