i wanna plus three value in textbox and when the amount is over 100, system will pop up message box telling exceeding amount
Public Sub ADD_Click()
If ([CHK_PER] + [LCL_EFT_PER] + [INTL_EFT1_PER] + [INTL_EFT2_PER] > 100) Then
MsgBox "You over percentage for this allocation"
End If
End Sub
Please help