• DİKKAT

    DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
    Altın Üyelik Hakkında Bilgi

Sütunları Satırların altına almak

Katılım
27 Ağustos 2008
Mesajlar
4
Excel Vers. ve Dili
excel 2007 türkçe
Üstadlar selam,

100 satırda 100 sorunun yer aldığı bir excell dökümanım var.
soruların cevap şıklarını ne yazık ki sorunun altına değil de sağında ayrı sütuna yazmışlar. ekte döküman mevcut.

hangi formül ile her bir sorunun(satırın) altına 4 satır daha ekleyip, sütunlardaki 4 şıkkı da buraya otomatik olarak aldırırım ?

ilginiz için şimdiden çok teşekkür ederim :)
 

Ekli dosyalar

  • test.xls
    test.xls
    51.5 KB · Görüntüleme: 7
  • test.jpg
    test.jpg
    76.5 KB · Görüntüleme: 9
Kod:
Sub sırala()
ison = Cells(Rows.Count, 1).End(xlUp).Row
e = 7
ek = 5
w = 3
Application.ScreenUpdating = False
 Rows(w).Select
    Selection.Insert Shift:=xlDown
    Selection.Insert Shift:=xlDown
    Selection.Insert Shift:=xlDown
    Selection.Insert Shift:=xlDown
    
    Range("C2:F2").Select
    Selection.Copy
    Range("B3").Select
    Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=True
    
For q = 1 To ison * 4
w = w + ek

 Rows(w).Select
    Selection.Insert Shift:=xlDown
    Selection.Insert Shift:=xlDown
    Selection.Insert Shift:=xlDown
    Selection.Insert Shift:=xlDown
 
Range("C" & e & "  : " & "F" & e).Select
e = e + ek
Selection.Copy
Range("B" & w).Select
    Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=True
' w = w + ek
Next
Application.ScreenUpdating = True
MsgBox " zımba"
End Sub
 
Geri
Üst