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

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

قام بنشر

 أعزائي الكرام أريد مساعدة في جمع عمود في الليست بوكس مع كل ووضع النتيجة في التكست بوكس

الاحترام والتقدير بارك الله فيكم

جمع عمود في الليست.xlsm

الاحترام والتقدير بارك الله فيكم

قام بنشر

Try this code

Private Sub ComboBox1_Change()
    Dim t As Double, i As Long
    With Me.ListBox1
        For i = 0 To .ListCount - 1
            If .List(i, 1) = ComboBox1.Value Then
                t = t + Val(.List(i, 3))
            End If
        Next i
    End With
    Me.TextBox10.Value = t
End Sub

 

  • Like 3
قام بنشر

The second parameter of List property

t = t + Val(.List(i, 3)

so change 3 to the column number but pay attention the column numbers in listbox is 0 based so the first column = 0 and the second column = 1 and so on

  • Like 2

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