DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Düğme87_Tıklat()
Set s1 = Sheets("RAF GİR")
a = s1.Range("C65536").End(3).Row
b = s1.TextBox1
For i = 3 To a
If Mid(Cells(i, "D"), 1, 1) < 1 Then
c = Mid(Cells(i, "D"), 2, 7)
Else
c = Mid(Cells(i, "D"), 1, 7)
End If
If c = b Then
MsgBox (Cells(i, "D").Address)
End If
Next
End Sub
Sub Düğme87_Tıklat()
If ActiveCell.Column <> 4 Then Range("d2").Select
son = Sayfa1.Cells(Rows.Count, "A").End(3).Row
deger = Left(Format(Sayfa1.TextBox1, 0), 7)
Range("d2:d" & son).Find(deger, ActiveCell, xlValues, xlPart, , xlNext).Select
End Sub
Sub Düğme87_Tıklat()
If ActiveCell.Column <> 4 Then Range("d2").Select
son = Sayfa1.Cells(Rows.Count, "A").End(3).Row
deger = Left(Format(Sayfa1.TextBox1, 0), 7)
Set a = Range("d2:d" & son).Find(deger, ActiveCell, xlValues, xlPart, , xlNext)
If a Is Nothing Then
MsgBox "BULUNAMADI"
Else
a.Select
End If
End Sub