Private Sub A4_Change()
Dim ws As Worksheet
Set ws = Worksheets("Archives_Bill")
If ComboBox2.Text = "" And A4.Text <> "" Then
MsgBox ("الرجاء اختيار الوحدة")
A4.Text = ""
Exit Sub
Else
With Me
If Me.A4.Text > Me.A1.Text = True Then
MsgBox "عفوا هذا العدد اكبر من القيمة الموجودة"
' تظهر هذه الرساله ومعها القيمة الموجوده او الفرق بنهم الموجود في ( A1 )
A4.Text = ""
Else
End If: End With
If ComboBox2.Text = "بالكرتونة" Or ComboBox2.Text = "بالعلبة" Or ComboBox2.Text = "بالعبوة" = True Then
ws.Cells(3, 2).Value = ""
ws.Cells(3, 1).Value = Me.A4.Value
Else
' Exit Sub
If ComboBox2.Text = "بالقطعة" Or ComboBox2.Text = "بالمتر" Or ComboBox2.Text = "بالكيلو" Or ComboBox2.Text = "بالعدد" Or ComboBox2.Text = "بالطن" = True Then
ws.Cells(3, 1).Value = ""
ws.Cells(3, 2).Value = Me.A4.Value
End If
End If
End If
End Sub