Sorgu için arama sonuçları: findnext

  1. 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."...
  2. 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
  3. 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.
  4. 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...
  5. 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...
  6. 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]
  7. Ö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...
  8. S

    ÇOKLU KRİTERE GÖRE RAPORLAMA YAPMAK

    hocam cahilliğimi hoş görün bunu nereye yapıştıracağım.
  9. S

    Bire bir aynı kelimeyi bulan macro hakkında

    ...ilkadres = ara.Address Do Cells(ara.Row, 2).Interior.Color = vbYellow Set ara = .FindNext(ara) Loop While Not ara Is Nothing And ara.Address <> ilkadres End If Next i End With MsgBox "İşlem tamam", vbInformation...
  10. Ömer

    ÇOKLU KRİTERE GÖRE RAPORLAMA YAPMAK

    ..."D") sure.Cells(son_sure, "E") = genel.Cells(c.Row, "E") End If Set c = genel.[A:A].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If Next i MsgBox "İşleminiz Bitti.", vbInformation...
  11. Astalavista58

    TextBox ile ListBoxta Arama Yapma

    ...8).Value myarr(10, a) = k.Offset(0, 9).Value myarr(11, a) = k.Offset(0, 10).Value Set k = Range("C:C").FindNext(k) Loop While Not k Is Nothing And k.Address <> adr listAnasayfa.Column = myarr End If Erase myarr Set k = Nothing...
  12. burhanyildirim11

    vba da Yıldız Karakteri (*)

    teşekkürler
  13. Y

    Düşeyara - Aranan kritere ait ikinci değer

    Hocam şu şekilde yapılabilir. Sub FindNext_Kullanma() Dim Aranan, ilkAdres As String Dim KoNTroLYeRi, Bulunan As Range Aranan = "Ahmet" Set KoNTroLYeRi = Range("A1:A10") Set Bulunan = KoNTroLYeRi.Find(Aranan) If Bulunan Is Nothing Then Debug.Print "Not found" Exit...
  14. Korhan Ayhan

    vba da Yıldız Karakteri (*)

    ...Nothing Then Search_Adress = Search_Data.Address Do MsgBox Search_Data.Value Set Search_Data = Cells.FindNext(Search_Data) Loop While Not Search_Data Is Nothing And Search_Data.Address <> Search_Adress End If Set Search_Data = Nothing...
  15. L

    Kelimeye Göre Hücreyi Renklendirmek

    ...Aşağıdaki kodları çalışmanıza uyarlayabilirsiniz. Sub araBul() Dim i As Integer i = 1 Set bul = Cells.Find("aranacak kelime", ActiveCell) If Not bul Is Nothing Then ilk = bul.Address Do bul.Interior.ColorIndex = 24 i = i + 1 Set bul = Cells.FindNext(bul) Loop While bul.Address <> ilk End If...
  16. seddur

    Checkbox caption'ı değiştirme

    ..."A").ClearComments S1.Cells(c.Row, "B").ClearComments 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 Silindi", vbInformation...
  17. Ömer

    Silme İşlemi

    ...5) Else Set k = Union(k, Cells(c.Row, "A").Resize(1, 5)) End If Set c = [B:B].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If If Not k Is Nothing Then k.Delete Shift:=xlUp Set c =...
  18. Korhan Ayhan

    TextBox 'a Veri Yazdırma

    ...Me.OyuKaydet.Enabled = True Exit Do End If Set Bul = Sheets("SenList").Range("A:A").FindNext(Bul) Loop While Not Bul Is Nothing And Bul.Address <> Adres End If End If End Sub Private Sub UserForm_Initialize() Set...
  19. ÖmerFaruk

    Birleştirilen hücrelerin etrafını kalın çizgi ile çevirme

    ....Borders(xlInsideHorizontal).Weight = xlThin .Borders(xlInsideVertical).LineStyle = xlContinuous .Borders(xlInsideVertical).Weight = xlThin End With ilk = NewRange.Row Set NewRange = Range("A3:A" & Rows.Count).FindNext(NewRange) Loop End Sub
  20. Ömer

    Liste Oluşturma, Karışık Verilerden

    ...-1 If c.Column = 56 Then s = 1 Cells(sat, "AA") = S1.Cells(c.Row, c.Column).Offset(0, s) sat = sat + 1 Set c = S1.[BD:BE].FindNext(c) Loop While Not c Is Nothing And c.Address <> Adr End If Application.ScreenUpdating = True...
Üst