اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

الردود الموصى بها

قام بنشر

السلام عليكم وبها نبدأ اي موضوع

برجاء التعديل علي كود ترحيل بيانات من لست بوكس الي شيت اكسيل حيث اريد انه عندما لا يوجد كمية في Text box 3  ان لا يقوم بالترحيل وان تظهر رسالة بادخال الكمية حيث تم التعديل وتظهر الرسالة ولكن يتم تنفيذ الامر برجاء الافادة

الكود

Private Sub ListBox1_Click()
Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Calculation = xlCalculationManual
LR = Sheet1.Range("C" & Rows.Count).End(xlUp).Row + 1
For YYY = 0 To ListBox1.ListCount
If ListBox1.Selected(YYY) = True Then


TextBox3.Enabled = True

Range("C" & LR).Value = ListBox1.List(YYY, 0)
Range("B" & LR).Value = ListBox1.List(YYY, 1)
Range("D" & LR).Value = ListBox1.List(YYY, 2)
Range("E" & LR).Value = ListBox1.List(YYY, 3)
Range("A" & LR).Value = ListBox1.List(YYY, 4)
Range("F" & LR).Value = TextBox3.Value

If TextBox3 <> "0" Then MsgBox " please insert a count ": Exit Sub
   
Range("G" & LR).Value = Cells(9, 7).Formula = "=(E9 * F9)"

ListBox1.Visible = True
TextBox1 = ""
TextBox2 = ""
TextBox3 = ""
'Cells(9, 7).Formula = "=(E9 * F9)"
'Range("G9:G200").FillDown
'Exit Sub
End If
Next YYY
Application.ScreenUpdating = True
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic
end sub

تم وضع الكود بطريقه صحيحه لتسهل قراءته

 

قام بنشر

استبدل

السطر التالي

Range("F" & LR).Value = Me.TextBox3.Value

بالشرط

 

 

If Me.TextBox3 <> "" Then
Range("F" & LR).Value = Me.TextBox3.Value
Else
MsgBox "Please enter the quantity"
Me.TextBox3.SetFocus
End If
End Sub

او 

If Me.TextBox3 = "" Then MsgBox "Please enter the quantity": Me.TextBox3.SetFocus: Exit Sub
Range("F" & LR).Value = Me.TextBox3.Value

 

 

  • Like 2
قام بنشر

استاذ ضاحي بشكرك جزيلا علي المساعدة 

انا بعت الشيت لحضرتك و بدلت السطر بس الرسالة بتظهر و لما بكتب العدد في التيكست بوكس 3 ودوس علي الصنف تاني للترحيل في الفاتورة مش بيرحل وياريت حضرتك تقولي ليه السطر الخاص بكود ضرب عمود الكمية في السعر مش بيسمع 

وشكرا جزيلا

وهذه هى المعادلة

CONCATENATE(D7," - ",D6," - ",TEXT(D5,"dd-mm-yyyy"))

بعتذر لحضرتك تم الارسال 

test (2).xlsm

قام بنشر

 

 

5.png.4942a45ba56d5fe3da872d1572f73cc6.png

الكود بعد التعديل جرب وقولي النتيجة

 

Private Sub ListBox1_Click()
Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Calculation = xlCalculationManual

LR = Sheet1.Range("C" & Rows.Count).End(xlUp).Row + 1
For YYY = 0 To ListBox1.ListCount
If ListBox1.Selected(YYY) = True Then

If Me.TextBox3 = "" Then MsgBox "Please enter the quantity": Me.TextBox3.SetFocus: Exit Sub
Range("F" & LR).Value = Me.TextBox3.Value
 
 
    Range("D" & LR).Value = ListBox1.List(YYY, 0)
    Range("B" & LR).Value = ListBox1.List(YYY, 1)
    Range("C" & LR).Value = ListBox1.List(YYY, 2)
    Range("E" & LR).Value = ListBox1.List(YYY, 3)
    Range("A" & LR).Value = ListBox1.List(YYY, 4)
    Range("G" & LR).Value = Format(ListBox1.List(YYY, 3) * Me.TextBox3.Value, "0.00")
      

     
   ' Range("G" & LR).Value = Cells(9, 7).Formula = "=(E9 * F9)"
   ' Range("G" & LR).Value = "=(E9 * F9)"
   


'ListBox1.Visible = True
'ListBox2.Visible = True
'ListBox3.Visible = True
TextBox1 = ""
TextBox2 = ""
TextBox3 = ""


End If
Next YYY
Application.ScreenUpdating = True
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic
End Sub

 

قام بنشر

الكود بعد تعديل شرط الكمية

Private Sub ListBox1_Click()
Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Calculation = xlCalculationManual

LR = Sheet1.Range("C" & Rows.Count).End(xlUp).Row + 1
For YYY = 0 To ListBox1.ListCount
If ListBox1.Selected(YYY) = True Then



    If Me.TextBox3 = "" Then MsgBox "Please enter the quantity": Me.TextBox3.SetFocus: Exit Sub
    Range("F" & LR).Value = Me.TextBox3.Value
    Range("D" & LR).Value = ListBox1.List(YYY, 0)
    Range("B" & LR).Value = ListBox1.List(YYY, 1)
    Range("C" & LR).Value = ListBox1.List(YYY, 2)
    Range("E" & LR).Value = ListBox1.List(YYY, 3)
    Range("A" & LR).Value = ListBox1.List(YYY, 4)
 
    Range("G" & LR).Value = Format(ListBox1.List(YYY, 3) * Me.TextBox3.Value, "0.00")
      

'ListBox1.Visible = True
'ListBox2.Visible = True
'ListBox3.Visible = True
TextBox1 = ""
TextBox2 = ""
TextBox3 = ""


End If
Next YYY
Application.ScreenUpdating = True
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic
End Sub

 

  • Like 1
قام بنشر

جربت الكود الجديد

(الكود بعد تعديل شرط الكمية)

الكود شغال تمام بس لما بيكون مفيش كمية بيطلعلي الرسالة و لما بحط الكمية وادوس علي نفس الصنف مش بيرحل البيانات لازم اعيد كتابة الصنف تاني او اختار صنف غيره محتاج اول ما اكتب الكمية و ارجع اعمل سلكت علي الصنف يرحل تلقائي زي الكود 

سسس.JPG

  • أفضل إجابة
قام بنشر

ضيف الكود ده علي الفورم

Private Sub TextBox3_AfterUpdate()

If Me.TextBox1 = "" Then Exit Sub

    If ListBox1.Value <> 0 Then
       ListBox1_Click
    End If


End Sub

خده نسخ والصقه عندك مجرد هاتدخل الكمية وترجع للصنف هاشتغل جرب وقولي

قام بنشر

تمام و بشكرك حضرتك جزيل الشكر علي مجهودك جزاك الله خيرا 

بشكرك جزيلا لمساعدة حضرتك ربنا يباركلك 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information