- Katılım
- 8 Haziran 2007
- Mesajlar
- 761
- Excel Vers. ve Dili
- excel- 2003 Türkçe
ekteki dosyada gerekli açıklamaları yaptım. ilgilenen arkadaşlara teşekkürler
Son düzenleme:
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("ANA SAYFA")
y = 9
For Each Hucre In shD.Range("AZ11:AZ30")
If Hucre.Value = 0 Or Hucre.Value = "" Then: GoTo f1
shA.Cells(y, 2) = shD.Cells(Hucre.Row, 2)
shA.Cells(y, 3) = shD.Cells(Hucre.Row, 3)
shA.Cells(y, 4) = shD.Cells(Hucre.Row, 4)
shA.Cells(y, 5) = shD.Cells(Hucre.Row, Hucre.Column)
y = y + 1
f1:
Next
Set shD = Nothing
Set shA = Nothing
End Sub