Sorgu için arama sonuçları: findnext

  1. Ömer

    Mükerrer kayıt uyarısı

    ...Else Exit For End If Next i If s = 8 Then Exit Do Set c = S2.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If sonsat = S2.Range("A65536").End(3).Row + 1 If s = 8 Then...
  2. dEdE

    Soru sayfa içerisinde belirli satırları kopyalama

    ...& Sat1 & ":G" & Sat1) = s2.Range("A" & Aranan.Row & ":G" & Aranan.Row).Value Sat1 = Sat1 + 1 Set Aranan = s2.Cells.FindNext(Aranan) Loop While Not Aranan Is Nothing And Aranan.Address <> adres End If s1.Range("E" & Sat1) =...
  3. Korhan Ayhan

    excellde listeleme yaparken kasıyor :((

    Merhaba, Alternatif olarak For-Next döngüsü yerine Find-FindNext kullanılabilir. Ya da en hızlısı dizi yöntemini kullanabilirsiniz. Örnekler...
  4. N

    Blok ta Ara

    ...Evleri", LookIn:=xlValues) If Not c Is Nothing Then adr = c.Address Do i = c.Offset(0, 1) Sayfa2.Cells(c.Row, "D") = Sayfa1.Cells(2, i) Set c = .FindNext(c) Loop While Not c Is Nothing And c.Address <> adr End If End With...
  5. Ömer

    Silinecek Listesindekileri Kaynak Listeden bul sil

    ...Set k = c Else Set k = Union(k, c) End If Set c = S1.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If Next i If Not k Is Nothing Then k.Delete Shift:=xlUp...
  6. N

    Soru Toplu Sorgu

    ...Do j = j + 1 sh1.Range("A" & c.Row & ":D" & c.Row).Copy sh3.Cells(j, "A") Set c = .FindNext(c) Loop While Not c Is Nothing And c.Address <> adr Else sh2.Cells(i, "B") = "Kayıt Bulunamadı.." End If End...
  7. furens

    Soru Toplu Sorgu

    ...sut).Column).Value = k.Offset(0, sut).Value Next sut sat = sat + 1 Set k = Sheets("Veri").Range("A2:A47680").FindNext(k) Loop While k.Address <> ilk_adres And Not k Is Nothing Set k = Nothing Application.ScreenUpdating = True If sat > 11 Then MsgBox...
  8. S

    Karşılaştırmalı Veri Çekme

    ...Application.CutCopyMode = False Exit Do End If Set k = Sayfa3.Range("A1:A" & sat2).FindNext(k) Loop While Not k Is Nothing And k.Address <> adr End If End If Next i Sayfa2.Range("C2:F" & sat1).Font.Size = 10...
  9. seddur

    İki sayfada satır 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.[A15:A50000].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...
  10. seddur

    Açıklama eklemede sorun

    ...Cells(c.Row, "D").Comment.Text Text:=deg3 s = 1 End If Set c = [A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If If s = 1 Then MsgBox "Açıklama Eklendi", vbInformation Else...
  11. T

    Soru Makro ile Düşeyara

    Hocam ben personel sayfasından büro sayfasına veri çekiyorum. Yazdığınız kod çalışmadı malesef
  12. N

    Soru Makro ile Düşeyara

    ...lookin:=xlValues, LookAt:=xlWhole) If Not c Is Nothing Then Ilk_Adres = c.Address Do Msgbox "Bulunan Değer ve Satır No : " & c.value & " " & c.Row Set c = .FindNext(c) Loop While Not c Is Nothing And c.Address <> Ilk_Adres End If End With
  13. hakki83

    Boşluk Karakteri Olan Hücreler

    Korhan hocam emeğinize sağlık, teşekkürler, fakat galiba aralarında boşluk olan kelimeleri de buluyor. Sadece boşluk veya boşluklar olan hücreleri bulması lazım. Sebebi de şu; Çalışma sayfasındki verileri kullanıp rapor döken kodlar var, yanlışlıkla basılan boşluk karakterini de veri olarak...
  14. Korhan Ayhan

    VBA kullanarak hücreler içinden belirli değer ile başlayan veriyi arayıp bulduğunda A1 den başlayarak alt alta sıralama

    ...<> "Barkod No:000000" Then Satir = Satir + 1 Cells(Satir, 1) = Bul.Value Set Bul = Alan.FindNext(Bul) End If Loop While Not Bul Is Nothing And Bul.Address <> Adres End If MsgBox "İşleminiz tamamlanmıştır."...
  15. Korhan Ayhan

    VBA kullanarak hücreler içinden belirli değer ile başlayan veriyi arayıp bulduğunda A1 den başlayarak alt alta sıralama

    ...Then Adres = Bul.Address Do Satir = Satir + 1 Cells(Satir, 1) = Bul.Value Set Bul = Alan.FindNext(Bul) Loop While Not Bul Is Nothing And Bul.Address <> Adres End If MsgBox "İşleminiz tamamlanmıştır.", vbInformation End Sub
  16. hakanatalay

    koşula göre hücreleri birleştirme

    tam olarak olması gerektiği gibi olmuş. Elinize sağlık Necdet Bey. Çok teşekkür ederim.
  17. T

    Ağda bulunan bir excelde arama yapma

    ..."A") Cells(Sat, "B") = Worksheets("Sayfa2").Cells(Bul.Row, "N") Set Bul = .findnext(Bul) Loop While Not Bul Is Nothing And Bul.Address <> Adr Else MsgBox "Bu sicile ait kayıt bulunmamaktadır." End If End With...
  18. N

    koşula göre hücreleri birleştirme

    ...c.Address Do Range("E" & c.Row) = c.Value Range("F" & c.Row) = itm(i) Set c = .FindNext(c) Loop While Not c Is Nothing And c.Address <> adr End If End With Next i...
  19. N

    Çözüldü Koşullu Biçimlendirme

    ....Bold = Cells(i, "M").Font.Bold ' .Size = Cells(i, "M").Font.Size End With End If Set c = .FindNext(c) Loop While Not c Is Nothing And c.Address <> adr End If End With Next i End Sub /CODE]
  20. Ömer

    Bire bir aynı kelimeyi bulan macro hakkında

    ...UCase(Replace(Replace(d(j), "ı", "I"), "i", "İ")) = ara Then MsgBox "aranan değeri buldum" Exit Do End If Next j Set c = [A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If...
Üst