Sorgu için arama sonuçları: listcount

  1. Kavinsky

    Search Box (Arama Kutusundan Veri Çağırma)

    ...= "" ListBox1.Clear If Say > 0 Then ListBox1.Column = Data Label4.Caption = " Listelenen Kayıt : " & ListBox1.ListCount Else ListBox1.RowSource = "LİSTE!A3:B" & S1.Cells(Rows.Count, 1).End(3).Row Label4.Caption = " Listelenen Kayıt : " &...
  2. Kavinsky

    Search Box (Arama Kutusundan Veri Çağırma)

    ...= "" ListBox1.Clear If Say > 0 Then ListBox1.Column = Data Label4.Caption = " Listelenen Kayıt : " & ListBox1.ListCount Else ListBox1.RowSource = "LİSTE!A3:B" & S1.Cells(Rows.Count, 1).End(3).Row Label4.Caption = " Listelenen Kayıt : " &...
  3. B

    Listbox çift tıklayınca seçilen kolondaki adeti iade etme.

    ...derdimi anlatmaya çalıştım. Private Sub ListBox2_DblClick(ByVal Cancel As MSForms.ReturnBoolean) Dim i As Integer For i = 0 To ListBox2.ListCount - 1 If ListBox2.Selected(i) = True Then Sheets("Satışdetay").Select Sheets("Satışdetay").Range("A" & ListBox2.ListIndex + 2).Select t =...
  4. S

    listboxta Sutun Sınırlaması

    ...& "*" Then With lstMusteriler .AddItem Cells(i.Row, 1).Value .List(.ListCount - 1, 1) = Cells(i.Row, 2).Value .List(.ListCount - 1, 2) = Cells(i.Row, 3).Value .List(.ListCount -...
  5. C

    ListBox Koşullu Satır Renklendirme

    ...= 1 If DateDiff("h", Sheets("Sayfa1").Range("H" & i), Sheets("Sayfa1").Range("H" & i)) > 7 Then For i = 0 To ListBox1.ListCount - 1 If ListBox1.List(i) = "(COLOR="Red"]) Hasan (/COLOR))" Then ListBox1.Selected(i) = True End If Next i End If End Sub
  6. A

    Listboxta bir sütundaki toplamı alma

    Hocam merhaba bu kodu hangi bölüme ekliyoruz?
  7. ahmed_ummu

    Listbox'a Sayfadaki Yatay Bilgileri Aldırma

    Teşekkürler Muzaffer Ali bey . Listbox'a verileri alırken İmleç aktif satırın A sütununda. Listbox'a almadı. Örnek dosyayı ekledim. Önce 4 adet combobox dan veriler seçilecek. Seöildikten sonra imleç hangi kişi seçili ise o kişinin A sütunundaki hücreye konumlanıyor. o işlemden sonra...
  8. Muzaffer Ali

    Listbox'a Sayfadaki Yatay Bilgileri Aldırma

    ...ListBox1.ColumnCount = 3 For Bak = 14 To Cells(1, Columns.Count).End(xlToLeft).Column Step 3 ListBox1.AddItem Cells(1, Bak) ListBox1.List(ListBox1.ListCount - 1, 1) = Cells(1, Bak + 1) ListBox1.List(ListBox1.ListCount - 1, 2) = Cells(1, Bak + 2) Next End Sub
  9. C

    CheckBox ile ListBox'da Filtreleme

    Veysel Emre bey Yukarıdaki kodlar güzel çalışıyor ancak ben tümünü göstertmek için checkbox ekledim ve ona "Tümü" yazdım onu nasıl bu formüle uygulayabiliriz tümü dediğimde diğer checkboxlardaki işaretlerin kalkması gerekiyor
  10. veyselemre

    CheckBox ile ListBox'da Filtreleme

    ...listele() With ListBox1 .List = lst If CheckBox1.Value Or CheckBox2.Value Or CheckBox3.Value Then For i = .ListCount - 1 To 0 Step -1 If Not ((CheckBox1.Value And .List(i, 7) = CheckBox1.Caption) Or _ (CheckBox2.Value And...
  11. C

    UserForm ListBox'ı Print Macro

    Kulomer46 Çok teşekkürler oldu :)
  12. kulomer46

    UserForm ListBox'ı Print Macro

    ...= "YeniSayfa" atla1: 'If Err.Number = 1004 Then MsgBox "Bilgi : " & cvlf & "Sayfa zaten mevcut. ", vbInformation, "" For i = 0 To ListBox5.ListCount - 1 For a = 0 To ListBox5.ColumnCount - 1 With Sheets("YeniSayfa") .Cells(i + 2, a + 1).Value = ListBox5.List(i, a) End With Next a, i i =...
  13. C

    UserForm ListBox'ı Print Macro

    ...= "YeniSayfa" If Err.Number = 1004 Then MsgBox "Bilgi : " & cvlf & "Sayfa zaten mevcut. ", vbInformation, "" For i = 0 To ListBox5.ListCount - 1 For a = 0 To ListBox5.ColumnCount - 1 With Sheets("YeniSayfa") .Cells(i + 2, a + 1).Value = ListBox5.List(i, a) End...
  14. Mdemir63

    Listbox Boş ise

    hocam yaptım . 1 adet veri varken de tamamen boş olduğunda 1 gösterdi
  15. Korhan Ayhan

    Listbox Boş ise

    Aşağıdaki kodu çalıştırıp test edebilirsiniz. MsgBox Listbox1.ListCount Bu kod size nesnede bulunan veri sayısını verecektir.
  16. Mdemir63

    Listbox Boş ise

    Selamlar Arkadaşlar Listbox boş ise işlem yapmasın istiyorum. aşağıdaki 3 seçeneği de denedim olmadı. If Listbox1.ListCount = 0 Then Exit Sub If Listbox1.ListCount < 0 Then Exit Sub If Listbox1.ListCount = -1 Then Exit Sub
  17. C

    LİSTBOX'DAN VE SAYFADAN SİLMEK

    By Fika çok teşekkürler gayet güzel olmuş :)
  18. ÖmerFaruk

    LİSTBOX'DAN VE SAYFADAN SİLMEK

    Denemeden yazıyorum. byfikanın gösterdiği kodda şu satırı kodların en altına taşımanız daha mantıklı olacak. For i = 0 To Me.ListBox1.ListCount - 1 If ListBox1.Selected(i) = True Then Sayfa1.Range("A" & Me.ListBox1.ListIndex + 4 & ":S" & Me.ListBox1.ListIndex + 4).Delete Shift:=xlUp...
  19. byfika

    LİSTBOX'DAN VE SAYFADAN SİLMEK

    Merhabalar, Araç sil butonuna (CommandButton5) alttaki kodları yazıp dene misiniz? For i = 0 To Me.ListBox1.ListCount - 1 If ListBox1.Selected(i) = True Then Sayfa1.Range("A" & Me.ListBox1.ListIndex + 4 & ":S" & Me.ListBox1.ListIndex + 4).Delete Shift:=xlUp Me.ListBox1.RowSource =...
  20. M

    Yıllık izinde hesaplaması

    ...= cbvardiya .Range("V" & sonsat) = Now .Range("W" & sonsat) = Environ("USERNAME") End With If sonsat = ListBox1.ListCount + 1 Then tnm.Range("K2") = tnm.Range("K2") + 1 End If kac = WorksheetFunction.Match(txtID, per.Range("A:A"), 0)...
Üst