Ferhat Pazarçevirdi
Özel Üye
- Katılım
- 15 Haziran 2006
- Mesajlar
- 3,704
- Excel Vers. ve Dili
- Excel 2003, 2007, 2010 (TR)
Tamam gerek kalmadı.
Ekteki dosyayı inceleyiniz.
Ekteki dosyayı inceleyiniz.
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Aktarma()
Dim Hucre As Range
Set shD = Sheets("Data")
Set shA = Sheets("Ayrıntı")
y = 7
For Each Hucre In shD.Range("be11:be305")
[B][COLOR=red] If IsError(Hucre) = True Then: GoTo f1[/COLOR][/B]
If Hucre.Value = 0 Or Hucre.Value = "" Then: GoTo f1
shA.Cells(y, 3) = shD.Cells(Hucre.Row, 4)
shA.Cells(y, 4) = shD.Cells(Hucre.Row, 5)
shA.Cells(y, 5) = shD.Cells(Hucre.Row, 47)
shA.Cells(y, 6) = shD.Cells(Hucre.Row, 57)
shA.Cells(y, 7) = shD.Cells(Hucre.Row, 69)
shA.Cells(y, 8) = shD.Cells(Hucre.Row, 68)
shA.Cells(y, 9) = shD.Cells(Hucre.Row, 70)
shA.Cells(y, 10) = shD.Cells(Hucre.Row, 61) + shD.Cells(Hucre.Row, 60) + shD.Cells(Hucre.Row, 71)
shA.Cells(y, 6) = shD.Cells(Hucre.Row, Hucre.Column)
y = y + 1
f1:
Next
Set shD = Nothing
Set shA = Nothing
End Sub