- Katılım
- 21 Mart 2008
- Mesajlar
- 232
- Excel Vers. ve Dili
- 2016
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub aktar()
isim = Range("e2").Text
bolum = Range("d2").Value & ".BÖLÜM"
satir = Sheets("veri").Cells.Find(What:=isim, After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Row
sutun = Sheets("veri").Cells.Find(What:=bolum, After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Column
soru_sayisi = [IV2].End(1).Column
Range(Cells(2, 6), Cells(2, soru_sayisi)).Select
Selection.Copy
Sheets("veri").Select
Sheets("veri").Cells(satir, sutun).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub