DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub tekli()
[f16:g500].ClearContents
c = 14
For y = 4 To 13
c = c + 1
For x = 2 To 15
If Not IsEmpty(Cells(x, y)) Then
c = c + 1
Cells(c, "f") = Cells(1, y)
Cells(c, "g") = Cells(x, y)
End If
Next: Next
End Sub
Sub ciftli()
[g16:i500].ClearContents
c = 14
For y = 4 To 11 Step 2
c = c + 1
For x = 2 To 15
If Not IsEmpty(Cells(x, y)) Then
c = c + 1
Cells(c, "g") = Cells(1, y)
Cells(c, "h") = Cells(x, y)
Cells(c, "i") = Cells(x, y + 1)
End If
Next: Next
End Sub