DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub askm()
Dim s1 As Worksheet, s2 As Worksheet
Set s1 = Sheets(1)
Set s2 = Sheets(2)
Dim son As Long, satir As Long
Dim sutun As Byte
son = s2.Range("B" & Rows.Count).End(3).Row
Application.ScreenUpdating = False
s1.Cells.Clear
satir = 2
sutun = 1
For i = 2 To son
s1.Cells(satir, sutun) = s2.Cells(i, "B") & vbLf & s2.Cells(i, "I")
With s1.Cells(satir, sutun)
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
.Font.Bold = True
End With
If sutun = 4 Then
sutun = 1
satir = satir + 1
Else
sutun = sutun + 1
End If
Next i
Application.ScreenUpdating = True
MsgBox "İşlem tamam", vbInformation, "UYARI!"
End Sub