oydemir
Altın Üye
- Katılım
- 22 Eylül 2007
- Mesajlar
- 265
- Excel Vers. ve Dili
- Türkçe 2016
- Altın Üyelik Bitiş Tarihi
- 07-12-2026
Elimdeki kodda şarta bağlı hücreleri kopyalayıp yeni sayfaya yapıştırıyorum fakat yapıştırırken son dolu hücrenin altına yapıştırmak için sizlerden yardım talep ediyorum. Teşekkürler
Sub ko()
Dim asi As Date
asi = Time
x = 2
Sheets("veri").Range("A2:H1000").ClearContents
For i = 3 To Cells(Rows.Count, "I").End(xlUp).Row
If Cells(i, "I") = "X" Then
Range("B" & i & ":H" & i).Copy Sheets("veri").Range("A" & x & ":H" & x)
x = x + 1
End If
Next
Range("A1").Select
MsgBox Format(Time - asi, "hh:mm:ss") & " Sürede Tamamlandı" & vbLf & Application.UserName, _
vbInformation, "ZAMAN"
End Sub
Sub ko()
Dim asi As Date
asi = Time
x = 2
Sheets("veri").Range("A2:H1000").ClearContents
For i = 3 To Cells(Rows.Count, "I").End(xlUp).Row
If Cells(i, "I") = "X" Then
Range("B" & i & ":H" & i).Copy Sheets("veri").Range("A" & x & ":H" & x)
x = x + 1
End If
Next
Range("A1").Select
MsgBox Format(Time - asi, "hh:mm:ss") & " Sürede Tamamlandı" & vbLf & Application.UserName, _
vbInformation, "ZAMAN"
End Sub