Sorgu için arama sonuçları: instr

  1. Korhan Ayhan

    Dosyaları Başka Bir Klasöre Taşıma

    ..." ") Last_Text = UCase(Replace(Replace(My_File_Name_Text(UBound(My_File_Name_Text)), "ı", "I"), "i", "İ")) If InStr(1, Last_Text, "İLKOKUL") > 0 Or InStr(1, Last_Text, "ORTAOKULU") > 0 Then My_File.Move Sub_Folder_1 & My_File.Name End If If...
  2. ahmed_ummu

    Dosyaları Başka Bir Klasöre Taşıma

    ...son kelimesini al lastWord = SonKelimeyiAl(filename) ' Son kelimeye göre klasör belirle ve dosyayı taşı If InStr(UCase(lastWord), "İLKOKULU") > 0 Or InStr(UCase(lastWord), "ORTAOKULU") > 0 Then newFilePath = ilkokullarPath & "\" & filename...
  3. veyselemre

    Çözüldü @İdris SERDAR hocamın dosyasına revize hk. (Saatlere gelen ekler)

    ..."dokuz")(Right(coz, 1)) _ ) For i = 1 To Len(coz) sonKar = Mid(coz, i, 1) If i = 1 Then ek = IIf(InStr("fstkçşhp", sonKar), "t", "d") If InStr("aeıioöuü", sonKar) Then Exit For Next i saatlereDeDaEkle = ek &...
  4. Muzaffer Ali

    Çözüldü Koşula Göre Mesaj Kutusu Uyarısı Verdirme

    ...= Target.Value If Oldvalue = "" Then Target.Value = Newvalue Else If InStr(1, Oldvalue, Newvalue) = 0 Then Target.Value = Oldvalue & ", " & Newvalue Else...
  5. C

    Çözüldü Koşula Göre Mesaj Kutusu Uyarısı Verdirme

    ...Target.Value Application.Undo Oldvalue = Target.Value If Oldvalue = "" Then Target.Value = Newvalue Else If InStr(1, Oldvalue, Newvalue) = 0 Then Target.Value = Oldvalue & ", " & Newvalue Else: Target.Value = Oldvalue End If...
  6. Muzaffer Ali

    İki metin arasındaki farkı bulma

    ..."F").End(xlUp).Row Satirlar = Split(Cells(Bak, "F"), Chr(10)) For Satir = 0 To UBound(Satirlar) If Chr(10) & InStr(Cells(Bak, "H"), Satirlar(Satir)) = 0 Then Fark = Fark & Chr(10) & Satirlar(Satir) End If Next Cells(Bak...
  7. F

    ListBox Sütun Ölçülerini Ayarlama

    ...k), "ı", "I"), "i", "İ")) ndeg = UCase(Replace(Replace(Me.Controls(nsn & k), "ı", "I"), "i", "İ")) If InStr(vdeg, ndeg) > 0 Or Me.Controls(nsn & k) = "" Then say = say + 1 Next If say = 9 Then: s = s + 1: For u = 1 To 23: snc(s, u) = v(a, u): Next '...
  8. cems

    8008 satırdan benzersiz 8 satırı seçmek

    ...6 ' Benzersiz bir sayı üretmek için döngü Do num = Int((16 - 1 + 1) * Rnd + 1) Loop While InStr(usedNumbers, "," & num & ",") > 0 ' Kullanılan sayıları güncelliyoruz usedNumbers = usedNumbers & num & ","...
  9. cems

    Lisboxtan sayfaya sayı formatında veri aktarımı yapamıyorum

    ...' Hedef sayfanın adını buraya yazın Dim p As Long For p = 2 To ws.Cells(ws.Rows.Count, 1).End(xlUp).Row If InStr(1, Cells(p, 1) & Cells(p, 16) & Cells(p, 17) & Cells(p, 18), TextBox1.Value, vbTextCompare) > 0 Then ListBox1.AddItem ws.Cells(p, 1).Value...
  10. K

    Tablo içinde ilgili kelimeyi bulup basma

    ...ne kadar uğraştıysam artık basmıyor. a = 0 Set Link = ie.Document.getElementsByTagName("a") For Each l In Link x = l.innerText y = "Başlat" If InStr(1, x, y, vbBinaryCompare) > 0 Then If a > 0 Then l.Click Exit For End If a = a + 2 End If Next l ya da Set Link =...
  11. M

    makrodan trim koduna rağmen hücre içerisinde boşluk atma

    ...3).Value ws.Cells(i, 1).NumberFormat = "00000" ' İlk yıldızın ve ikinci yıldızın indekslerini bulun ilkYildizIndex = InStr(1, metin, "*") ikinciYildizIndex = InStr(ilkYildizIndex + 1, metin, "*") artiIndex = InStr(1, metin, "+") If...
  12. M

    makrodan trim koduna rağmen hücre içerisinde boşluk atma

    ...3).Value ws.Cells(i, 1).NumberFormat = "00000" ' İlk yıldızın ve ikinci yıldızın indekslerini bulun ilkYildizIndex = InStr(1, metin, "*") ikinciYildizIndex = InStr(ilkYildizIndex + 1, metin, "*") artiIndex = InStr(1, metin, "+") If...
  13. igultekin2000

    Listbox satır renklendirme.

    ...Sheets("hsp").Cells(Sheets("hsp").Rows.Count, "B").End(xlUp).Row ' Arama değerini B sütununda ara For i = 1 To LastRow If InStr(1, LCase(Sheets("hsp").Cells(i, "B").Value), SearchValue, vbTextCompare) > 0 Then ' Eğer aranan değer bulunduysa A ve B sütunlarını...
  14. pNouma

    Hücrede ilk 10 karakter değiştirme.

    ...iyi pazarlar. Sub FindReplaceLimit() Dim metin As String Dim a As Long Dim n As Long metin = ActiveSheet.Range("A1") a = InStr(1, metin, "Tarihinde") With ActiveSheet For n = 1 To a - 2 metin = Replace(metin, Mid(metin, n, 1), "x") Next End With...
  15. N

    Kopyala farklı kaydet makrosunda formüllerin kopyalanmaması

    ...Application.ScreenUpdating = False Application.DisplayAlerts = False Application.EnableEvents = False uzanti = Right(ThisWorkbook.Name, InStr(1, StrReverse(ThisWorkbook.Name), ".", vbTextCompare)) If uzanti = ".xlsx" Then FileFormatNum = 51 ElseIf uzanti = ".xlsm" Then FileFormatNum = 52...
  16. F

    Kopyala farklı kaydet makrosunda formüllerin kopyalanmaması

    ...Application.ScreenUpdating = False Application.DisplayAlerts = False Application.EnableEvents = False uzanti = Right(ThisWorkbook.Name, InStr(1, StrReverse(ThisWorkbook.Name), ".", vbTextCompare)) If uzanti = ".xlsx" Then FileFormatNum = 51 ElseIf uzanti = ".xlsm" Then FileFormatNum = 52...
  17. Zeki Gürsoy

    Dosya Hangi Konumdaysa Bul/Sil

    ...Do If Not (fileData.dwFileAttributes And FA_DIRECTORY) = FA_DIRECTORY Then strFileName = Left$(fileData.cFileName, InStr(fileData.cFileName, vbNullChar) - 1) findResults.Add strPath & strFileName...
  18. A

    Excel ile Olasılık Hesabı

    Hocam çok teşekkür ederim çok işimi gördü sağolun. Emeğinize sağlık.
  19. A

    Farklı kaydetme... (makrosuz, formülsüz)

    Allah senden razı olsun üstad.
Üst