Sorgu için arama sonuçları: listcount

  1. M

    arama yapınca sarıya boyansın kelimeler

    hocam ben yapamam keşke yapabilsem,ekledim ama olmadı sanırım yapamadım.
  2. Cengiz Demir

    Soru sayfalar arası veri aktarımı. vba

    ...False ListBox1.RowSource = "'personel listesi'!B5:K" & Sheets("personel listesi").[c65536].End(xlUp).Row End If For X = XD To ListBox1.ListCount Sheets("personel listesi").Cells(X, 1) = X - 1 Next If Cks <> "" Then MsgBox "Çıkış Kaydı Tamamlandı", vbCritical Else MsgBox...
  3. ÖmerFaruk

    arama yapınca sarıya boyansın kelimeler

    ...yada silebilirsiniz. Private Sub ListBox1_Click() Dim hcr As Range Range("B2:H132").Interior.Color = xlNone If Me.ListBox1.ListCount = 0 Then Exit Sub Dizi = Range("A1:I132").Value For i = 1 To UBound(Dizi) If Dizi(i, 1) = "" Then Dizi(i, 1) = Dizi(i - 1, 1)...
  4. ÖmerFaruk

    Listbox 2 tarih arası raporluları getirme

    ...Date1) ComboBox2.AddItem Format(Date1 - 1, "dd.mm.yyyy") Loop ComboBox1.ListIndex = 0 ComboBox2.ListIndex = ComboBox2.ListCount - 1 CombolarEnable = True End Sub Sub Listbox() sql = "Select f1,f2,f3,f4,format([f5],""dd.mm.yyyy""),format([f6],""dd.mm.yyyy""),f7,f8...
  5. S

    listbox

    Lstgelenevrak.ListIndex = Lstgelenevrak.ListCount - 1 bu kod ile son satırı gösterme yaparak düzenledim. Şu anda en iyi sonuç bu oldu
  6. ahmed_ummu

    Permission Denied Hatası

    ...ListBox1.ColumnCount = 3 ListBox1.ColumnWidths = "30;70;150" ListBox1.AddItem ListBox1.List(ListBox1.ListCount - 1, 0) = s1.Cells(i, "a").Value ListBox1.List(ListBox1.ListCount - 1, 1) = s1.Cells(i, "b").Value...
  7. A

    listbox a 22 kolon eklemek

    ...For i = 2 To ToplamSatir If Range("f" & i).Value Like TextBox_sicil.Value & "*" Then liste = ListBox1.ListCount ListBox1.AddItem ListBox1.List(liste, 0) = Range("A" & i).Value ListBox1.List(liste, 1) = Range("B" & i).Value...
  8. K

    Texbox'da toplama formatı sorunu

    ...= "100;60;40;40" .ListBox1.Height = 150 .ListBox1.Column = My_List End With For ii = 1 To ListBox1.ListCount - 0 topla = CDbl(ListBox1.List(ii - 1, 1) + topla) Next ii TextBox17 = vbCrLf & "GENEL TOPLAM :" & " " & Format(topla, "#,##0.00") Set Sh = Nothing...
  9. K

    Texbox'da toplama formatı sorunu

    ...= "100;60;40;40" .ListBox1.Height = 150 .ListBox1.Column = My_List End With For ii = 1 To ListBox1.ListCount - 2 topla = CDbl(ListBox1.List(ii - 1, 1) + topla) Next ii TextBox17 = vbCrLf & "GENEL TOPLAM :" & " " & Format(topla, "#,##0.00") Set Sh = Nothing...
  10. Trilenium

    Texbox'da toplama formatı sorunu

    For ii = 1 To ListBox1.ListCount - 1 topla = CDbl(ListBox1.List(i - 1, 0) + topla ) Next i TextBox17 = vbCrLf & "GENEL TOPLAM :" & " " & Format(topla, "#,##0")
  11. seddur

    Texbox'da toplama formatı sorunu

    ...23.000 rakamını 23 olarak topluyor.Sanırım format hatası var.Yardımcı olabilir misiniz.?.Teşekkür ederim. For ii = 0 To ListBox1.ListCount - 1 topla = topla + Val(ListBox1.list(ii, 1)) Next ii TextBox17 = vbCrLf & "GENEL TOPLAM :" & " " & Format(topla, "#,##0") end sub
  12. U

    SumIfs hakkında

    ...& "/" & "January" & "/" & Me.ComboBox1.Value, y) Me.ListBox3.AddItem Format(a, "MMMM") For i = 0 To ListBox3.ListCount - 1 Me.ListBox3.List(ListBox3.ListCount - 1, 1) = Application.WorksheetFunction.SumIfs(Sheets("Takip").Range("G:G"), Sheets("Takip").Range("D:D"), _ ">=" & a...
  13. U

    SumIfs hakkında

    ...ListBox( i+1, 1) gibi ifade yazamıyoruz sanırım sadece Dizilerde mi yazabiliyoruz Dim l As Long ListBox3.AddItem For i = 0 To ListBox3.ListCount - 1 l = Fix(ListBox3.List(i, 1) / 60 / 8) If l < 1 Then ListBox3.List(i, 2) = 0 ListBox3.List(i + 1, 1) = CDbl(ListBox3.List(i, 1)) +...
  14. U

    SumIfs hakkında

    Merhaba SumIfs ile toplam alıyorum Me.ListBox3.List(ListBox3.ListCount - 1, 1) = Application.WorksheetFunction.SumIfs(Sheets("Takip").Range("G:G"), Sheets("Takip").Range("D:D"), _ ">=" & a, Sheets("Takip").Range("D:D"), "<=" & B, Sheets("Takip").Range("B:B"), ListBox1.Selected(i) = True)...
  15. L

    Soru SpinButton İle Listboxtaki İlk ve Son Satıra Gitmek

    Aşağıdaki kodları userformun kod sayfasına kopyalayarak deneyin. Private Sub SpinButton1_SpinDown() ListBox1.ListIndex = ListBox1.ListCount - 1 End Sub Private Sub SpinButton1_SpinUp() ListBox1.ListIndex = 0 End Sub
  16. dEdE

    Listbox'da tarih formatı sorunu

    ...If WorksheetFunction.CountIf(Range("a" & i & ":a15"), Cells(i, 1)) = 1 Then ListBox1.AddItem ListBox1.List(ListBox1.ListCount - 1, 0) = Sheets("Anasayfa").Range("A" & i) ListBox1.List(ListBox1.ListCount - 1, 1) = Format(Sheets("Anasayfa").Range("B" & i), "dd.mm.yyyy") End If...
  17. Astalavista58

    Listbox Tarih Formatı

    ...= &H80000008 Else tbSicil.BackColor = vbRed tbSicil.ForeColor = vbWhite End If Set S1 = Nothing Label33.Caption = "BULUNAN PERSONEL SAYISI : " & listBalya.ListCount captionsil Application.ScreenUpdating = True Application.Calculation = xlCalculationAutomatic...
  18. Emir Hüseyin Çoban

    Sql like kullanımı hakkında

    ...rst = New ADODB.Recordset With rst .ActiveConnection = cnt Dim selection As String Dim lItem As Long For lItem = 0 To UserForm1.ListBox1.ListCount - 1 If UserForm1.ListBox1.Selected(lItem) = True Then selection = selection & "'" & Replace(Left(UserForm1.ListBox1.List(lItem), 10), "'", "''")...
  19. M

    Sql like kullanımı hakkında

    ...rst = New ADODB.Recordset With rst .ActiveConnection = cnt Dim selection As String Dim lItem As Long For lItem = 0 To UserForm1.ListBox1.ListCount - 1 If UserForm1.ListBox1.Selected(lItem) = True Then selection = selection & "'" & Replace(Left(UserForm1.ListBox1.List(lItem), 10), "'", "''")...
  20. M

    Sql like kullanımı hakkında

    ...Dim lItem As Long Dim strSQL As String Dim i As Integer Dim aData() As String Dim lngLoop1 As Long For lItem = 0 To UserForm1.ListBox1.ListCount - 1 If UserForm1.ListBox1.Selected(lItem) = True Then selection = selection & "'" & Replace(Left(UserForm1.ListBox1.List(lItem), 10), "'", "''")...
Üst