Sorgu için arama sonuçları: listcount

  1. B

    textbox dan listboxda bulma

    HOCAM 10. DAN VAZGEÇTİM 9 BAŞLIK ALACAM AMA KASMASIN ÇOK KASIYOR ADD ITEM İLE BUNUN BAŞKA VERİ ÇEKME YÖNTEMİ YOKMU ACABA
  2. M

    textbox dan listboxda bulma

    ...If deg Like "*" & txtbx & "*" Then ListBox1.AddItem cell.Offset(0, -1).Value ' A sütunu ListBox1.List(ListBox1.ListCount - 1, 1) = cell.Value ' B sütunu ListBox1.List(ListBox1.ListCount - 1, 2) = cell.Offset(0, 1).Value ' C sütunu...
  3. B

    HATA YARDIM TALEBİ

    ...MsgBox "FİRMA İSMİ GİRİNİZ": Exit Sub Set s1 = Sheets("FİRMA MAİL LİSTESİ") x = s1.Cells(Rows.Count, "B").End(3).Row For i = 0 To ListBox1.ListCount - 1 If ListBox1.Selected(i) = True Then Set R = s1.Range("B1:B" & x).Find(Trim(ListBox1.List(i, 1)), , xlValues, xlPart, , , False) If Not R Is...
  4. B

    Listbox a veri gelince satır başına gitmesin

    ..."f") TextBox7.Text = Cells(ActiveCell.Row, "E") TextBox2.Text = Cells(ActiveCell.Row, "C") UserForm28.TextBox1.Text = Cells(ActiveCell.Row, "b") UserForm28.Show toplam = 0 For i = 1 To ListBox1.ListCount toplam = toplam + Val(ListBox1.List(i - 1)) Next i TextBox6 = toplam End Sub
  5. B

    Listbox a veri gelince satır başına gitmesin

    Private Sub UserForm_Initialize() With ListBox1 .RowSource = "A1:G96" .ColumnHeads = False .ColumnCount = 6 .ColumnWidths = "30;60;50;110;60" .RowSource = "A1:G" & Cells(Rows.Count, "B").End(xlUp).Row End With End Sub hocam bendeki inittialize bu...
  6. H

    Listbox a veri gelince satır başına gitmesin

    Böyle bir şey mi ? Private Sub UserForm_Initialize() For i = 1 To 5 ListBox1.AddItem i Next For j = 0 To ListBox1.ListCount - 1 If ListBox1.List(j) * 1 = [b2] Then ListBox1.Selected(j) = True End If Next End Sub
  7. B

    Combobox dan 2. seçtiğim veriyi 2. satıra yazdırma

    ...bu textboxlar için With UserForm7.ListBox1 .ColumnHeads = False .ColumnWidths = "30;60;50;110;60" .ColumnCount = 6 .AddItem .List(.ListCount - 1, 0) = "ADET" .List(.ListCount - 1, 1) = "BARKOD NO" .List(.ListCount - 1, 2) = "PALET NO" .List(.ListCount - 1, 3) = "Müşteri Adı" .List(.ListCount...
  8. B

    Listbox ta en son satırı secme

    hocam ben bu kodu yazınca excelin 96666 ci sayfasına gidiyor benim listbox 96 sayfalık bir liste
  9. B

    listboxda hücre satır toplama

    teşekkürler işimi çözdü hocam
  10. byfika

    listboxda hücre satır toplama

    merhabalar A sütununu toplatacaksanız aşağıdaki gibi uygulayın. For i = 1 To ListBox1.ListCount - 1 T = ListBox1.List(i - 0, 0) + T Next i TextBox6 = T
  11. B

    listboxda hücre satır toplama

    For i = 1 To ListBox1.ListCount - 1 T = ListBox1.List(i - 0, 1) + T Next i TextBox6 = T benim toplatacağım listbox 7 kolonlu listboxdaki a1 hücresi bu kod ile 2. kolonu topluyor bir altını yazıyorum hata veriyor a1 leri nasıl toplatırım?
  12. B

    Lİstbox Toplami

    hocam merhaba For i = 1 To ListBox1.ListCount - 1 T = ListBox1.List(i - 0, 1) + T Next i TextBox6 = T benim toplatacağım hücre 7 kolonlu listboxdaki a1 hücresi bu kod ile 2. kolonu topluyor bir altını yazıyorum hata veriyor a1 leri nasıl toplatırım
  13. byfika

    Listboxda filtreli toplama problemi

    ...Dim i As Long Dim toplam As Double Dim sutunIndex As Integer sutunIndex = 7 toplam = 0 For i = 0 To ListBox1.ListCount - 1 If IsNumeric(ListBox1.List(i, sutunIndex)) Then toplam = toplam + CDbl(ListBox1.List(i, sutunIndex)) End If Next i...
  14. R

    listbox çoklu seçim textbox yaz aktarma

    ...en az bir ürün seçiniz.", vbExclamation Exit Sub End If ' Seçilen her bir ürün için işlem yap For i = 0 To ListBox1.ListCount - 1 If ListBox1.Selected(i) Then urunAdi = ListBox1.List(i) ' urunSatir = CLng(ListBox1.List(i, 1)) '...
  15. N

    listbox çoklu seçim textbox yaz aktarma

    ..."C").Value <> "" Then ListBox1.AddItem ThisWorkbook.Sheets("Sayfa1").Cells(i, "c").Value ListBox1.List(ListBox1.ListCount - 1, 1) = i ListBox1.ListStyle = 1 ListBox1.MultiSelect = 1 End If End If Next i End Sub
  16. N

    sayfada farklı hücrelerden combobox getir seçili olan işlem yap

    üstad süpersin yaaa hepsi tam istediğim gibi olmuş sağolasın teşekürr ederim sağolasın.....
  17. N

    sayfada farklı hücrelerden combobox getir seçili olan işlem yap

    bu kod olayına ilave şöyle bir şey var kullandığım nasıl aktif edebilirim bu olaya acaba h alanına x yazdığımda x yazılı olan hücreleri gizliyor istediğim gizli olanlar combobox a gelmesin nasıl yapabilirim bunu hocam birde user formda ilave bitanede textbox3 var bunada combobox1 den seçilen...
  18. N

    sayfada farklı hücrelerden combobox getir seçili olan işlem yap

    merhaba üstad çok teşekürr ederim sağol geç cevap yazdım
  19. N

    userform combobox textbox sayfaya aktarma

    ..."B").Value <> "" Then ComboBox1.AddItem ThisWorkbook.Sheets("Sayfa1").Cells(i, "B").Value ComboBox1.List(ComboBox1.ListCount - 1, 1) = i End If Next i End Sub Private Sub CommandButton1_Click() Dim urunAdi As String Dim urunSatir As Long If...
  20. veyselemre

    Listboxta Birden fazla sütuna göre sıralama yapma

    ...If TextBox1 = "" Then TextBox2 = "" ListBox1.Clear ListBox2.Clear End If TextBox2 = ListBox1.ListCount TextBox3 = ListBox2.ListCount Call Topla_Logo Call Topla_Kademe End Sub Private Function Diz(ByVal Dizim As Variant, Stn1 As Integer, Stn2 As...
Üst