Sorgu için arama sonuçları: findnext

  1. W

    listbox tarih sütunu tarih sıralaması

    ...For j = 1 To 12 myarr(j, a) = .Cells(k.Row, j).Value Next j Set k = Range("C2:C65536").FindNext(k) Loop While Not k Is Nothing And k.Address <> adrs ListBox1.Column = myarr End If End With For t = 0 To 7 ListBox1.List(t, 4) =...
  2. E

    Soru İki hücre arasında benzerlerin sayısını bulma

    Öncelikle formül için çok çok teşekkür ederim. ve bir desteğinize daha ihtiyacım var: Mesela "T.C. ZİRAAT BANKASI İSTANBUL ŞUBE" ile "TÜRKİYE CUMHURİYETİ ZİRAAT BANKASI" arasında olan benzer kelimeleri bulurken T.C. ile TÜRKİYE CUMHURİYETİNİN aynı anlama geldiğini bilip bunu da...
  3. muygun

    Soru İki hücre arasında benzerlerin sayısını bulma

    ...bul = c.Address Do c.Characters(Start:=InStr(UCase(c.Value), UCase(kelimee)), Length:=Len(kelimee)).Font.ColorIndex = 3 Set c = .FindNext(c) If c Is Nothing Then Exit Do Loop While Not c Is Nothing And c.Address <> bul End If End With 'Renklendirme kodları sonu Next i Next k...
  4. Ömer

    Soru Hücreye Girilen Veriyi Anımsamak

    ...Set c = S2.[C11:C1000].Find("*" & ActiveCell & "*") If Not c Is Nothing Then Adr = c.Address Do ListBox1.AddItem S2.Cells(c.Row, "C") Set c = S2.[C11:C1000].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If End Sub
  5. Ömer

    Koşullu Combobox

    ...= S1.Cells(c.Row, "E") Exit Do End If End If Set c = S1.[D:D].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If End With End Sub Private Sub...
  6. Ömer

    Soru Hücreye Girilen Veriyi Anımsamak

    ...If Not c Is Nothing Then Adr = c.Address Do ListBox1.AddItem c.Value Set c = S2.[C10:C500].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If End Sub Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)...
  7. Ömer

    Soru Hücreye Girilen Veriyi Anımsamak

    ...Adr = c.Address Do ListBox1.AddItem c.Value Set c = S2.[C10:C500].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If End If Next i End Sub Private Sub...
  8. Ömer

    İstenilen değerse o Satırı yazdırmak

    ...Do If S1.Cells(c.Row, "E") < 30 Then S1.Cells(c.Row, "D").Resize(1, 6).Copy Cells(sat, "D") sat = sat + 1 End If Set c = S1.[D:D].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If End Sub
  9. Ömer

    Makro ile sıralama

    ...3).Copy Cells(sat, "F") sat = Cells(Rows.Count, "F").End(xlUp).Row + 1 End If Set c = [B:B].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If Next j MsgBox "Aktarım Bitti." End Sub
  10. Ömer

    Daha önce değer girilmiş excel satırında işlem yapmak

    ...& c.Row & " .Satır %2 den fazla" & _ vbLf & "Başka Kayıt Varsa Aranacak" End If Set c = S1.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr If s > 0 Then MsgBox s & " Değişim Yapıldı", vbInformation Else...
  11. Ömer

    Daha önce değer girilmiş excel satırında işlem yapmak

    ...If Not c Is Nothing Then Adr = c.Address Do S1.Cells(c.Row, "D") = TextBox2.Text Set c = S1.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr If Not c Is Nothing Then MsgBox "Değişim Yapıldı", vbInformation Else...
  12. Korhan Ayhan

    Soru Klasör içindeki excel dosyalarını açmadan arama yapmak

    ...bu sütunları listelemek istediğinizi anlıyorum. Sizin paylaştığınız linkteki kodlarda aşağıdaki satırı bulun. Set c = sht.Cells.FindNext(c) Hemen üstüne aşağıdaki satırları ekleyip deneyin. WS.Range("F1").Offset(Lrow, 0).Value = sht.Cells(c.Row, "C") WS.Range("G1").Offset(Lrow, 0).Value...
  13. Ömer

    Koşulla göre Kopyala Yapıştır

    ...Operation:=xlNone, Transpose:=True sat = sat + 1 End If s = c.Row Set c = [D:D].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If Cells(s, "D").Resize(son - s + 1, 1).Copy Cells(sat...
  14. Cengizhantr06

    Listviewden seçili değeri silme

    Örnek dosya yüklerseniz yardım ederim
  15. U

    Listboxta tıklanan veriye göre hücreye gitme

    ...birçok forumda aradım ama bulduklarımdan bir sonuca ulaşamadım. Yardım için yazman gerektiğini düşündüm. Sorunum şu texbox'daki verileri findnext yöntemi ile buldum. bunları bulunan değişkenine aktardım. Ardından adresleri ile birlikte listbox'a aktardım UserForm2.ListBox1.AddItem Bulunan...
  16. seddur

    Listviewden seçili değeri silme

    ...Then If k Is Nothing Then Set k = S2.Rows(c.Row) Else Set k = Application.Union(k, S2.Rows(c.Row)) End If End If Set c = S2.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If If Not k Is Nothing Then Application.ScreenUpdating = False k.Delete...
  17. seddur

    İki kriterli silme

    ...Then If k Is Nothing Then Set k = S1.Rows(c.Row) Else Set k = Application.Union(k, S1.Rows(c.Row)) End If End If Set c = S1.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If If Not k Is Nothing Then Application.ScreenUpdating = False k.Delete...
  18. seddur

    İki kriterli silme

    ...St.Rows(c.Row) Else Set d = Application.Union(d, St.Rows(c.Row)) End If Set c = St.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If If Not c Is Nothing Then d.Delete MsgBox "Silme...
  19. hadromer

    Belirli bir Metin içeren sütunu silmek (Dim aranan)

    ...Else Set d = Application.Union(d, Columns(c.Column)) End If Set c = Rows(1).FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If Next j Application.ScreenUpdating = False If Not d Is Nothing...
  20. Korhan Ayhan

    Satır yerine Hücreleri silme

    ...Set Alan = Union(Alan, Cells(Bul.Row, "H").Resize(1, 3)) End If Set Bul = Range("A:A").FindNext(Bul) Loop While Not Bul Is Nothing And Bul.Address <> Adres Else MsgBox "Aranan veri bulunamadı!", vbExclamation...
Üst