Sorgu için arama sonuçları: listcount

  1. Ö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...
  2. 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
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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")
  8. 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
  9. 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...
  10. 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)) +...
  11. 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)...
  12. 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
  13. 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...
  14. 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...
  15. 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), "'", "''")...
  16. 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), "'", "''")...
  17. 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), "'", "''")...
  18. T

    Ağda bulunan bir excelde arama yapma

    ...aktar End Sub Private Sub aktar() With ListBox1 .ColumnCount = 2 For Sat = 1 To 20 .AddItem .List(.ListCount - 1, 0) = Sheets("Sayfa1").Cells(Sat, 1) .List(.ListCount - 1, 1) = Sheets("Sayfa1").Cells(Sat, 2) Next End With...
  19. M

    Soru sayfalar arası arama hatası

    ...şekilde listboxtan tıklayarak plakayı alıyorum Private Sub lst_dask_DblClick(ByVal Cancel As MSForms.ReturnBoolean) For i = 0 To lst_dask.ListCount - 1 If lst_dask.Selected(i) = True Then ' frmanamenu.TextBox23 = lst_dask.Column(0, i) ' frmanamenu.TextBox18 =...
  20. ÖmerFaruk

    Listbox'dan sayfaya kayıt

    ...& Satır) = TextBox2 Sayfam.Range("B" & Satır) = TextBox3 Sayfam.Range("C" & Satır) = TextBox2 For i = 0 To Me.ListBox1.ListCount - 1 If Me.ListBox1.Selected(i) Then Sayfam.Range("D" & Satır).Offset(, i) = Me.ListBox2.Text End If Next i End Sub
Üst