Sorgu için arama sonuçları: listcount

  1. U

    uyarı mesajına göre (vbyes - vbno) seçeneğine kayıt yapsın

    ...Private Sub CommandButton9_Click() Set S1 = Sheets("Rapor") With ListBox6 S1.Cells(S1.Rows.Count, 1).End(3)(2, 1).Resize(.ListCount, .ColumnCount) = .List End With End Sub end[code] Ancak aşağıdaki gibi çalışmasını istiyorum. butona tıkladığımızda Rapor sayfasında...
  2. U

    Listbox sütununda toplam almak

    Hocam teşekkürler elllerinize sağlık
  3. Korhan Ayhan

    Listbox sütununda toplam almak

    ...kendi dosyanıza göre uyarlayabilirsiniz. Private Sub CommandButton1_Click() Dim X As Long, Topla As Double For X = 0 To ListBox1.ListCount - 1 If ListBox1.List(X, 10) <> "" Then Topla = Topla + ListBox1.List(X, 10) End If Next TextBox3 =...
  4. asdsxx

    Arama Kodunda Arapça işaretler revizyonu olabilir mi?

    ...say = say + 1 Set d = .FindNext(d) Loop While Not d Is Nothing And d.Address <> FirstAddress End If End With End If If ListBox1.ListCount > 0 Then ListBox1.ListIndex = 0 TextBox6.Text = ListBox1.ListCount & " Adet" MsgBox ListBox1.ListCount & " Adet Bulundu" Else MsgBox "Hiç veri...
  5. asdsxx

    UserForm, TextBox'daki bilgileri pdf çıktı alma

    ...Bunu PDF olarak nasıl revize edebiliriz. Private Sub CommandButton1_Click() Application.ScreenUpdating = False For i = 0 To ListBox2.ListCount - 1 If ListBox2.Selected(i) = True Then j = j + 1 End If Next i If j = 0 Then MsgBox "Seçim Yapmadınız": Exit Sub 'On Error Resume Next Dim appword...
  6. 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 : " &...
  7. 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 : " &...
  8. 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 =...
  9. 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 -...
  10. 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
  11. A

    Listboxta bir sütundaki toplamı alma

    Hocam merhaba bu kodu hangi bölüme ekliyoruz?
  12. 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...
  13. 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
  14. 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
  15. 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...
  16. C

    UserForm ListBox'ı Print Macro

    Kulomer46 Çok teşekkürler oldu :)
  17. 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 =...
  18. 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...
  19. Mdemir63

    Listbox Boş ise

    hocam yaptım . 1 adet veri varken de tamamen boş olduğunda 1 gösterdi
  20. 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.
Üst