- Katılım
- 1 Temmuz 2008
- Mesajlar
- 1,748
- Excel Vers. ve Dili
- 2019 TR
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub aktar()
Sheets("Sheet1").Select
Application.ScreenUpdating = False
With Sheets("Sheet2")
.Range("A:A").ClearContents
For i = 1 To Cells(65536, "A").End(xlUp).Row
For j = 1 To 4
sat = sat + 1
.Cells(sat, "A").Value = Cells(i, j).Value
Next j
sat = sat + 1
Next i
End With
Application.ScreenUpdating = True
MsgBox "İşlem tamam"
End Sub
Rica ederim.Sn Evren Gizlen hocam, Elinize sağlık. Tam istediğim gibi olmuş, Teşekkürler.
Sub sonuncuyuaktar()
Application.ScreenUpdating = False
n = [A65536].End(xlUp).Row
Range("A" & n & ":D" & n).Select
Selection.Copy
Sheets("Sheet2").Select
If [A65536].End(xlUp).Row = 1 Then n = 1 Else n = [A65536].End(xlUp).Row + 2
Range("A" & n).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Application.ScreenUpdating = True
End Sub
Sub hepsiniaktar()
Application.ScreenUpdating = False
Sheets("Sheet2").Columns("A:A").ClearContents
For i = 1 To [A65536].End(xlUp).Row
Sheets("Sheet1").Select
Range("A" & i & ":D" & i).Select
Selection.Copy
Sheets("Sheet2").Select
If [A65536].End(xlUp).Row = 1 Then n = 1 Else n = [A65536].End(xlUp).Row + 2
Range("A" & n).Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Next
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub