CV İçeriklerini Tek Bir Dosyada Toplama

Katılım
29 Haziran 2009
Mesajlar
9
Excel Vers. ve Dili
2003
Merhaba arkadaşlar.

İnsan Kaynakları üzerine bir firma için bir çalışma yapmaktayım. Adaylar excel formatındaki CV'yi doldurup, dosyanın ismini TC'leri ile değiştirip firmaya gönderecek ve firma da bu CV'lerin içeriklerini tek bir dosyada birleştirerek daha hızlı kararlar alabilecek veya veri ambarı olarak saklayacaklardır.

Aynı klasör altındaki tüm excel dosyalarından fotoğrafları çekebiliyorum. birleştirilmiş hücrelerdeki metin bilgilerini de çekebiliyorum ama bir türlü checkbox ların işaret bilgisini alamıyorum. Yardımcı olabilir misiniz?
(Checkboxları hem form hem de activex ten denedim olmadı.)

Kodlar aşağıdaki gibidir. İşyerinden upload yapamıyorum. Dosyayı yükleyemiyorum.

Private Sub CommandButton1_Click()
UserForm1.Hide
Dim klasor As Object
Dim KTP As Workbook, ASIII As Excel.Application
Dim A1S1 As Worksheet, A2S2 As Worksheet
Dim A1 As String, A2 As String, yol As String
Dim HCR As Variant
Application.ScreenUpdating = False
Set ASIII = CreateObject("Excel.Application")
ASIII.Visible = False
yol = ThisWorkbook.Path & "\"
Liste (yol)
AltListe (yol)
A1 = ActiveWorkbook.Name
Set A1S1 = Workbooks(A1).Sheets("Sayfa1")
jjj = 3
Columns("B:B").ColumnWidth = 30
Dim DosyaSayisi As Integer
Dim DosyaSayisi2 As Integer
DosyaSayisi = TextBox1.Text
DosyaSayisi2 = DosyaSayisi
DosyaSayisi = (DosyaSayisi - 1) * 13 + 1
For iii = 14 To DosyaSayisi
Sheets(1).Cells(iii - 11, 1) = Sheets(1).Cells(iii, 1)
A2 = Sheets(1).Cells(iii, 1)
Rows(jjj & ":" & jjj).RowHeight = 179
Set KTP = ASIII.Workbooks.Open(yol & A2)
Set A2S2 = KTP.Sheets("CV")

'FOTOĞRAFIN KOPYALANMASI
A2S2.Range("O2:p6").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj, 2), Cells(jjj, 2)).Select
.Pictures.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj, 2), Cells(jjj, 2)).Copy
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj, 2), Cells(jjj, 2)).Select
.Pictures.Paste
End With
Application.CutCopyMode = False

'AD SOYADIN KOPYALANMASI
A2S2.Range("D7:p7").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 5), Cells(jjj + 1, 5)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 5), Cells(jjj + 1, 5)).Copy
Range(Cells(jjj, 5), Cells(jjj, 5)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 5), Cells(jjj + 1, 5)).Select
Selection.Delete Shift:=xlToLeft
.
.
.
'Falan filan falan filan (Ad soyad gibi diğer metinleri çekiyorum.)
.
.
.
'Şunu denedim olmadı
'SÜRÜCÜ EHLİYETİ VAR KUTUCUĞU
A2S2.Activate
If ActiveSheet.Shapes("Onay Kutusu 10").OLEFormat.Object.Value = 1 Then
'If ActiveSheet.Shapes("Onay Kutusu 10").OLEFormat.Object.Value = True Then
A1S1.Activate
Sheets(1).Cells(jjj, 67) = "İşaretli"
Else
Sheets(1).Cells(jjj, 67) = "İşaretsiz"
End If
.
.
.
Gene falan filan falan filan (Diğer kutucukların kodları ama çalışmadığından dolayı buraları atlatıyorum)
.
.
.
KTP.Save: ASIII.Quit
Application.Wait Time + TimeSerial(0, 0, 5)
Next
Range("B2").Select
Selection.EntireRow.Delete
Range("C2").Select
Selection.EntireColumn.Delete
Range("C2").Select
Selection.EntireColumn.Delete

'FOTOĞRAFLARIN DÜZENLENMESİ
kkk = 3
For iii = 14 To DosyaSayisi
Range(Cells(kkk, 1), Cells(kkk + 11, 1)).Select
Selection.EntireRow.Delete
iii = iii + 12
kkk = kkk + 1
Next
For zzz = 1 To DosyaSayisi2 + 2
For ttt = 1 To jjj + 2
On Error Resume Next
Range("B" & zzz).Select
ActiveCell.FormulaR1C1 = ""
Range("B" & zzz).Select
ActiveSheet.Shapes.Range(Array("Picture " & ttt)).Select
Selection.Placement = xlMoveAndSize
ActiveSheet.Shapes.Range(Array("Resim " & ttt)).Select
Selection.Placement = xlMoveAndSize
ActiveSheet.Shapes.Range(Array("Fotoğraf " & ttt)).Select
Selection.Placement = xlMoveAndSize
Next
Next

'BAŞLIKLAR
Sheets(1).Cells(1, 2) = "FOTOĞRAF"
Sheets(1).Cells(1, 3) = "AD SOYAD"

Set klasor = Nothing
Application.ScreenUpdating = True
MsgBox "İşlem Tamam."
End Sub

'Dosyanın olduğu klasör yolu ve Klasördeki dosyaların Listesi
Private Sub Liste(yol As String)
Dim dosya As String, i As Long
dosya = Dir(yol & "*.xlsm")
i = 1
While dosya <> ""
DoEvents
i = i + 13
Cells(i, 1) = dosya
If Cells(i, 1) = "ZZZ_MAKRO_VERİ_ÇEKME.xlsm" Then
Cells(i, 1) = ""
End If
dosya = Dir
Wend
End Sub

Private Sub AltListe(yol As String)
Dim fL As Object, f As Object, dosya As String, j As Long
Set fL = CreateObject("Scripting.FileSystemObject").GetFolder(yol).SubFolders
On Error GoTo sonraki
For Each f In fL
dosya = Dir(f.Path & "*.xlsm")
While dosya <> ""
DoEvents
j = [a65000].End(3).Row + 13
Cells(j, 1) = yol & "" & dosya
dosya = Dir
Wend
AltListe (f.Path)
sonraki:
Next
Set fL = Nothing
End Sub
 

halit3

Uzman
Uzman
Katılım
18 Ocak 2008
Mesajlar
12,800
Excel Vers. ve Dili
2003 excell türkçe
ve
2007 excell türkçe
'Şunu denedim olmadı
'SÜRÜCÜ EHLİYETİ VAR KUTUCUĞU
A2S2.Activate
If ActiveSheet.Shapes("Onay Kutusu 10").OLEFormat.Object.Value = 1 Then
'If ActiveSheet.Shapes("Onay Kutusu 10").OLEFormat.Object.Value = True Then
A1S1.Activate
Sheets(1).Cells(jjj, 67) = "İşaretli"
Else
Sheets(1).Cells(jjj, 67) = "İşaretsiz"
End If
kod:

Kod:
If TypeName(ActiveSheet.Shapes("Onay Kutusu 10").OLEFormat.Object) = "CheckBox" Then
If ActiveSheet.Shapes("Onay Kutusu 10").OLEFormat.Object.Value = xlOn Then
A1S1.Activate
Sheets(1).Cells(jjj, 67) = "İşaretli"
Else
Sheets(1).Cells(jjj, 67) = "İşaretsiz"
End If
End If
 
Katılım
29 Haziran 2009
Mesajlar
9
Excel Vers. ve Dili
2003
Halit Bey merhabalar,

Belirtmiş olduğunuz kodlar ile denedim. Gene olmadı. Rica etsem siz de bakabilir misiniz?

Teşekkürler.

Şu an check boxlar formdan alınmıştır. Belki de activex olması doğrudur ama activex lisini de denedim. Yapamadım.
 
Son düzenleme:

halit3

Uzman
Uzman
Katılım
18 Ocak 2008
Mesajlar
12,800
Excel Vers. ve Dili
2003 excell türkçe
ve
2007 excell türkçe
Merhabalar,

Sanırım dosyayı ekleyemiyorum. Link aşağıdadır.

Saygılar.

CheckBox Bilgisini Alma.rar - 59 KB

kod:

Kod:
Sub nesneleribul()

A2S2.Activate

Dim Picture As Object
Set s1 = Sheets(ActiveSheet.Name)
For Each Picture In s1.Shapes
If TypeName(s1.Shapes(Picture.Name).OLEFormat.Object) = "CheckBox" Then


    If Picture.Name = "Check Box 2" Then
        If s1.Shapes(Picture.Name).OLEFormat.Object.Value = 1 Then
        Workbooks(A1S1).Sheets(1).Cells(jjj, 59) = "İşaretli"
        Else
        Workbooks(A1S1).Sheets(1).Cells(jjj, 59) = "İşaretsiz"
        End If
        
        ElseIf Picture.Name = "Check Box 3" Then
        If s1.Shapes(Picture.Name).OLEFormat.Object.Value = 1 Then
        Workbooks(A1S1).Sheets(1).Cells(jjj, 60) = "İşaretli"
        Else
        Workbooks(A1S1).Sheets(1).Cells(jjj, 60) = "İşaretsiz"
        End If
        
        ElseIf Picture.Name = "Check Box 4" Then
        If s1.Shapes(Picture.Name).OLEFormat.Object.Value = 1 Then
        Workbooks(A1S1).Sheets(1).Cells(jjj, 61) = "İşaretli"
        Else
        Workbooks(A1S1).Sheets(1).Cells(jjj, 61) = "İşaretsiz"
        End If
    
    End If

End If
Next Picture
MsgBox "İşlem Tamam", vbInformation, " U Y A R I "

End Sub
 

halit3

Uzman
Uzman
Katılım
18 Ocak 2008
Mesajlar
12,800
Excel Vers. ve Dili
2003 excell türkçe
ve
2007 excell türkçe
aşağıdaki kodu iki kırmızı arasındakileri sil bunu ekle

Kod:
[COLOR="red"]'''Check Boxlar Kontrol Edilecek
GoTo 4444444
'TC KUTUCUĞU
A2S2.Activate[/COLOR]


Dim Picture As Object
Set s1 = Sheets(ActiveSheet.Name)

For k = 2 To 19
For Each Picture In s1.Shapes
If TypeName(s1.Shapes(Picture.Name).OLEFormat.Object) = "CheckBox" Then
If Picture.Name = "Check Box " & k Then
If s1.Shapes(Picture.Name).OLEFormat.Object.Value = 1 Then
Workbooks(A1S1).Sheets(1).Cells(jjj, k + 57) = "İşaretli"
Else
Workbooks(A1S1).Sheets(1).Cells(jjj, k + 57) = "İşaretsiz"
End If
End If
End If
Next Picture
Next k


[COLOR="Red"]4444444
iii = iii + 12
jjj = jjj + 13[/COLOR]
 

halit3

Uzman
Uzman
Katılım
18 Ocak 2008
Mesajlar
12,800
Excel Vers. ve Dili
2003 excell türkçe
ve
2007 excell türkçe
kodunuza kırmızı olan yeri ekledim


Kod:
Private Sub CommandButton1_Click()
UserForm1.Hide
Dim klasor As Object
Dim KTP As Workbook, ASIII As Excel.Application
Dim A1S1 As Worksheet, A2S2 As Worksheet
Dim A1 As String, A2 As String, yol As String
Dim HCR As Variant
Application.ScreenUpdating = False
Set ASIII = CreateObject("Excel.Application")
ASIII.Visible = False
yol = ThisWorkbook.Path & "\"
Liste (yol)
AltListe (yol)
A1 = ActiveWorkbook.Name
Set A1S1 = Workbooks(A1).Sheets("Sayfa1")
jjj = 3
Columns("B:B").ColumnWidth = 30
Dim DosyaSayisi As Integer
Dim DosyaSayisi2 As Integer
DosyaSayisi = TextBox1.Text
DosyaSayisi2 = DosyaSayisi
DosyaSayisi = (DosyaSayisi - 1) * 13 + 1

For iii = 14 To DosyaSayisi
Sheets(1).Cells(iii - 11, 1) = Sheets(1).Cells(iii, 1)
A2 = Sheets(1).Cells(iii, 1)
Rows(jjj & ":" & jjj).RowHeight = 179
Set KTP = ASIII.Workbooks.Open(yol & A2)
Set A2S2 = KTP.Sheets("CV")

'FOTOĞRAFIN KOPYALANMASI
A2S2.Range("O2:P6").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj, 2), Cells(jjj, 2)).Select
.Pictures.Paste
End With
Application.CutCopyMode = False

'''''''''''''''''''''''
'Bu kısım gerektiğinde silinebilir.
Range(Cells(jjj, 2), Cells(jjj, 2)).Copy
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj, 2), Cells(jjj, 2)).Select
.Pictures.Paste
End With
Application.CutCopyMode = False
'''''''''''''''''''''''

'AD SOYADIN KOPYALANMASI
A2S2.Range("D7:P7").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 5), Cells(jjj + 1, 5)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 5), Cells(jjj + 1, 5)).Copy
Range(Cells(jjj, 5), Cells(jjj, 5)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 5), Cells(jjj + 1, 5)).Select
Selection.Delete Shift:=xlToLeft

'DOĞUM YERİNİN KOPYALANMASI
A2S2.Range("D8:G8").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 6), Cells(jjj + 1, 6)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 6), Cells(jjj + 1, 6)).Copy
Range(Cells(jjj, 6), Cells(jjj, 6)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 6), Cells(jjj + 1, 6)).Select
Selection.Delete Shift:=xlToLeft

'DOĞUM TARİHİNİN KOPYALANMASI
A2S2.Range("J8:J8").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 7), Cells(jjj + 1, 7)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 7), Cells(jjj + 1, 7)).Copy
Range(Cells(jjj, 7), Cells(jjj, 7)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 7), Cells(jjj + 1, 7)).Select
Selection.Delete Shift:=xlToLeft

'TC NOSUNUN KOPYALANMASI
A2S2.Range("D9:G9").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 8), Cells(jjj + 1, 8)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 8), Cells(jjj + 1, 8)).Copy
Range(Cells(jjj, 8), Cells(jjj, 8)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 8), Cells(jjj + 1, 8)).Select
Selection.Delete Shift:=xlToLeft

'DİĞER KİMLİK BİLGİSİNİN KOPYALANMASI
A2S2.Range("N9:O9").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 9), Cells(jjj + 1, 9)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 9), Cells(jjj + 1, 9)).Copy
Range(Cells(jjj, 9), Cells(jjj, 9)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 9), Cells(jjj + 1, 9)).Select
Selection.Delete Shift:=xlToLeft

'GSM NUMARASININ KOPYALANMASI
A2S2.Range("E10:G10").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 10), Cells(jjj + 1, 10)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 10), Cells(jjj + 1, 10)).Copy
Range(Cells(jjj, 10), Cells(jjj, 10)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 10), Cells(jjj + 1, 10)).Select
Selection.Delete Shift:=xlToLeft

'EV TELEFONUN KOPYALANMASI
A2S2.Range("M10:N10").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 11), Cells(jjj + 1, 11)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 11), Cells(jjj + 1, 11)).Copy
Range(Cells(jjj, 11), Cells(jjj, 11)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 11), Cells(jjj + 1, 11)).Select
Selection.Delete Shift:=xlToLeft

'EMAİLİN KOPYALANMASI
A2S2.Range("D11:P11").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 12), Cells(jjj + 1, 12)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 12), Cells(jjj + 1, 12)).Copy
Range(Cells(jjj, 12), Cells(jjj, 12)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 12), Cells(jjj + 1, 12)).Select
Selection.Delete Shift:=xlToLeft

'ANNE ADININ KOPYALANMASI
A2S2.Range("D14:G14").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 13), Cells(jjj + 1, 13)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 13), Cells(jjj + 1, 13)).Copy
Range(Cells(jjj, 13), Cells(jjj, 13)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 13), Cells(jjj + 1, 13)).Select
Selection.Delete Shift:=xlToLeft

'ANNE MESLEĞİNİN KOPYALANMASI
A2S2.Range("J14:P14").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 14), Cells(jjj + 1, 14)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 14), Cells(jjj + 1, 14)).Copy
Range(Cells(jjj, 14), Cells(jjj, 14)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 14), Cells(jjj + 1, 14)).Select
Selection.Delete Shift:=xlToLeft

'BABA ADININ KOPYALANMASI
A2S2.Range("D15:G15").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 15), Cells(jjj + 1, 15)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 15), Cells(jjj + 1, 15)).Copy
Range(Cells(jjj, 15), Cells(jjj, 15)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 15), Cells(jjj + 1, 15)).Select
Selection.Delete Shift:=xlToLeft

'BABA MESLEĞİNİN KOPYALANMASI
A2S2.Range("J15:P15").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 16), Cells(jjj + 1, 16)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 16), Cells(jjj + 1, 16)).Copy
Range(Cells(jjj, 16), Cells(jjj, 16)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 16), Cells(jjj + 1, 16)).Select
Selection.Delete Shift:=xlToLeft

'KARDEŞ SAYISININ KOPYALANMASI
A2S2.Range("D16:G16").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 17), Cells(jjj + 1, 17)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 17), Cells(jjj + 1, 17)).Copy
Range(Cells(jjj, 17), Cells(jjj, 17)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 17), Cells(jjj + 1, 17)).Select
Selection.Delete Shift:=xlToLeft

'EV ADRESİNİN KOPYALANMASI
A2S2.Range("D18:P18").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 18), Cells(jjj + 1, 18)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 18), Cells(jjj + 1, 18)).Copy
Range(Cells(jjj, 18), Cells(jjj, 18)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 18), Cells(jjj + 1, 18)).Select
Selection.Delete Shift:=xlToLeft

'ACİL KİŞİSİNİN KOPYALANMASI
A2S2.Range("D19:E19").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 19), Cells(jjj + 1, 19)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 19), Cells(jjj + 1, 19)).Copy
Range(Cells(jjj, 19), Cells(jjj, 19)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 19), Cells(jjj + 1, 19)).Select
Selection.Delete Shift:=xlToLeft

'ACİL YAKINLIK DERECESİNİN KOPYALANMASI
A2S2.Range("I19:L19").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 20), Cells(jjj + 1, 20)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 20), Cells(jjj + 1, 20)).Copy
Range(Cells(jjj, 20), Cells(jjj, 20)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 20), Cells(jjj + 1, 20)).Select
Selection.Delete Shift:=xlToLeft

'ACİL TELEFONUNUN KOPYALANMASI
A2S2.Range("N19:P19").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 21), Cells(jjj + 1, 21)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 21), Cells(jjj + 1, 21)).Copy
Range(Cells(jjj, 21), Cells(jjj, 21)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 21), Cells(jjj + 1, 21)).Select
Selection.Delete Shift:=xlToLeft

'SÜRÜCÜ EHLİYETİ TİPİNİN KOPYALANMASI
A2S2.Range("M20:M20").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 22), Cells(jjj + 1, 22)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 22), Cells(jjj + 1, 22)).Copy
Range(Cells(jjj, 22), Cells(jjj, 22)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 22), Cells(jjj + 1, 22)).Select
Selection.Delete Shift:=xlToLeft

'DİĞER YABANCI DİL BİLGİSİNİN KOPYALANMASI
A2S2.Range("E22:G22").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 23), Cells(jjj + 1, 23)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 23), Cells(jjj + 1, 23)).Copy
Range(Cells(jjj, 23), Cells(jjj, 23)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 23), Cells(jjj + 1, 23)).Select
Selection.Delete Shift:=xlToLeft

'LİSE BİLGİSİNİN KOPYALANMASI
A2S2.Range("F23:P23").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 24), Cells(jjj + 1, 24)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 24), Cells(jjj + 1, 24)).Copy
Range(Cells(jjj, 24), Cells(jjj, 24)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 24), Cells(jjj + 1, 24)).Select
Selection.Delete Shift:=xlToLeft

'1. ÜNİVERSİTE BİLGİSİNİN KOPYALANMASI
A2S2.Range("I24:P24").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 25), Cells(jjj + 1, 25)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 25), Cells(jjj + 1, 25)).Copy
Range(Cells(jjj, 25), Cells(jjj, 25)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 25), Cells(jjj + 1, 25)).Select
Selection.Delete Shift:=xlToLeft

'2. ÜNİVERSİTE BİLGİSİNİN KOPYALANMASI
A2S2.Range("I25:P25").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 26), Cells(jjj + 1, 26)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 26), Cells(jjj + 1, 26)).Copy
Range(Cells(jjj, 26), Cells(jjj, 26)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 26), Cells(jjj + 1, 26)).Select
Selection.Delete Shift:=xlToLeft

'YÜKSEK LİSANS BİLGİSİNİN KOPYALANMASI
A2S2.Range("I26:P26").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 27), Cells(jjj + 1, 27)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 27), Cells(jjj + 1, 27)).Copy
Range(Cells(jjj, 27), Cells(jjj, 27)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 27), Cells(jjj + 1, 27)).Select
Selection.Delete Shift:=xlToLeft

'1. FİRMANIN KOPYALANMASI
A2S2.Range("D28:G28").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 28), Cells(jjj + 1, 28)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 28), Cells(jjj + 1, 28)).Copy
Range(Cells(jjj, 28), Cells(jjj, 28)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 28), Cells(jjj + 1, 28)).Select
Selection.Delete Shift:=xlToLeft

'1. FİRMADAKİ GÖREVİN KOPYALANMASI
A2S2.Range("H28:M28").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 29), Cells(jjj + 1, 29)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 29), Cells(jjj + 1, 29)).Copy
Range(Cells(jjj, 29), Cells(jjj, 29)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 29), Cells(jjj + 1, 29)).Select
Selection.Delete Shift:=xlToLeft

'1. FİRMADAKİ GÖREV SÜRESİNİN KOPYALANMASI
A2S2.Range("N28:P28").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 30), Cells(jjj + 1, 30)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 30), Cells(jjj + 1, 30)).Copy
Range(Cells(jjj, 30), Cells(jjj, 30)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 30), Cells(jjj + 1, 30)).Select
Selection.Delete Shift:=xlToLeft

'1. FİRMADAKİ GÖREV TANIMININ KOPYALANMASI
A2S2.Range("D29:P29").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 31), Cells(jjj + 1, 31)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 31), Cells(jjj + 1, 31)).Copy
Range(Cells(jjj, 31), Cells(jjj, 31)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 31), Cells(jjj + 1, 31)).Select
Selection.Delete Shift:=xlToLeft

'2. FİRMANIN KOPYALANMASI
A2S2.Range("D30:G30").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 32), Cells(jjj + 1, 32)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 32), Cells(jjj + 1, 32)).Copy
Range(Cells(jjj, 32), Cells(jjj, 32)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 32), Cells(jjj + 1, 32)).Select
Selection.Delete Shift:=xlToLeft

'2. FİRMADAKİ GÖREVİN KOPYALANMASI
A2S2.Range("H30:M30").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 33), Cells(jjj + 1, 33)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 33), Cells(jjj + 1, 33)).Copy
Range(Cells(jjj, 33), Cells(jjj, 33)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 33), Cells(jjj + 1, 33)).Select
Selection.Delete Shift:=xlToLeft

'2. FİRMADAKİ GÖREV SÜRESİNİN KOPYALANMASI
A2S2.Range("N30:P30").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 34), Cells(jjj + 1, 34)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 34), Cells(jjj + 1, 34)).Copy
Range(Cells(jjj, 34), Cells(jjj, 34)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 34), Cells(jjj + 1, 34)).Select
Selection.Delete Shift:=xlToLeft

'2. FİRMADAKİ GÖREV TANIMININ KOPYALANMASI
A2S2.Range("D31:P31").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 35), Cells(jjj + 1, 35)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 35), Cells(jjj + 1, 35)).Copy
Range(Cells(jjj, 35), Cells(jjj, 35)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 35), Cells(jjj + 1, 35)).Select
Selection.Delete Shift:=xlToLeft

'3. FİRMANIN KOPYALANMASI
A2S2.Range("D32:G32").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 36), Cells(jjj + 1, 36)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 36), Cells(jjj + 1, 36)).Copy
Range(Cells(jjj, 36), Cells(jjj, 36)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 36), Cells(jjj + 1, 36)).Select
Selection.Delete Shift:=xlToLeft

'3. FİRMADAKİ GÖREVİN KOPYALANMASI
A2S2.Range("H32:M32").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 37), Cells(jjj + 1, 37)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 37), Cells(jjj + 1, 37)).Copy
Range(Cells(jjj, 37), Cells(jjj, 37)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 37), Cells(jjj + 1, 37)).Select
Selection.Delete Shift:=xlToLeft

'3. FİRMADAKİ GÖREV SÜRESİNİN KOPYALANMASI
A2S2.Range("N32:P32").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 38), Cells(jjj + 1, 38)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 38), Cells(jjj + 1, 38)).Copy
Range(Cells(jjj, 38), Cells(jjj, 38)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 38), Cells(jjj + 1, 38)).Select
Selection.Delete Shift:=xlToLeft

'3. FİRMADAKİ GÖREV TANIMININ KOPYALANMASI
A2S2.Range("D33:P33").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 39), Cells(jjj + 1, 39)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 39), Cells(jjj + 1, 39)).Copy
Range(Cells(jjj, 39), Cells(jjj, 39)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 39), Cells(jjj + 1, 39)).Select
Selection.Delete Shift:=xlToLeft

'SSK TARİHİNİN KOPYALANMASI
A2S2.Range("D34:G34").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 40), Cells(jjj + 1, 40)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 40), Cells(jjj + 1, 40)).Copy
Range(Cells(jjj, 40), Cells(jjj, 40)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 40), Cells(jjj + 1, 40)).Select
Selection.Delete Shift:=xlToLeft

'CV TARİHİNİN KOPYALANMASI
A2S2.Range("D36:G36").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 41), Cells(jjj + 1, 41)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 41), Cells(jjj + 1, 41)).Copy
Range(Cells(jjj, 41), Cells(jjj, 41)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 41), Cells(jjj + 1, 41)).Select
Selection.Delete Shift:=xlToLeft

'1. REFERANSIN AD SOYADININ KOPYALANMASI
A2S2.Range("D38:G38").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 42), Cells(jjj + 1, 42)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 42), Cells(jjj + 1, 42)).Copy
Range(Cells(jjj, 42), Cells(jjj, 42)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 42), Cells(jjj + 1, 42)).Select
Selection.Delete Shift:=xlToLeft

'1. REFERANSIN TELEFONUNUN KOPYALANMASI
A2S2.Range("H38:L38").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 43), Cells(jjj + 1, 43)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 43), Cells(jjj + 1, 43)).Copy
Range(Cells(jjj, 43), Cells(jjj, 43)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 43), Cells(jjj + 1, 43)).Select
Selection.Delete Shift:=xlToLeft

'1. REFERANSIN ŞİRKETİN KOPYALANMASI
A2S2.Range("M38:N38").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 44), Cells(jjj + 1, 44)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 44), Cells(jjj + 1, 44)).Copy
Range(Cells(jjj, 44), Cells(jjj, 44)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 44), Cells(jjj + 1, 44)).Select
Selection.Delete Shift:=xlToLeft

'1. REFERANSIN ÜNVANININ KOPYALANMASI
A2S2.Range("O38:P38").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 45), Cells(jjj + 1, 45)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 45), Cells(jjj + 1, 45)).Copy
Range(Cells(jjj, 45), Cells(jjj, 45)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 45), Cells(jjj + 1, 45)).Select
Selection.Delete Shift:=xlToLeft

'2. REFERANSIN AD SOYADININ KOPYALANMASI
A2S2.Range("D39:G39").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 46), Cells(jjj + 1, 46)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 46), Cells(jjj + 1, 46)).Copy
Range(Cells(jjj, 46), Cells(jjj, 46)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 46), Cells(jjj + 1, 46)).Select
Selection.Delete Shift:=xlToLeft

'2. REFERANSIN TELEFONUNUN KOPYALANMASI
A2S2.Range("H39:L39").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 47), Cells(jjj + 1, 47)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 47), Cells(jjj + 1, 47)).Copy
Range(Cells(jjj, 47), Cells(jjj, 47)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 47), Cells(jjj + 1, 47)).Select
Selection.Delete Shift:=xlToLeft

'2. REFERANSIN ŞİRKETİN KOPYALANMASI
A2S2.Range("M39:N39").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 48), Cells(jjj + 1, 48)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 48), Cells(jjj + 1, 48)).Copy
Range(Cells(jjj, 48), Cells(jjj, 48)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 48), Cells(jjj + 1, 48)).Select
Selection.Delete Shift:=xlToLeft

'2. REFERANSIN ÜNVANININ KOPYALANMASI
A2S2.Range("O39:P39").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 49), Cells(jjj + 1, 49)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 49), Cells(jjj + 1, 49)).Copy
Range(Cells(jjj, 49), Cells(jjj, 49)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 49), Cells(jjj + 1, 49)).Select
Selection.Delete Shift:=xlToLeft

'3. REFERANSIN AD SOYADININ KOPYALANMASI
A2S2.Range("D40:G40").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 50), Cells(jjj + 1, 50)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 50), Cells(jjj + 1, 50)).Copy
Range(Cells(jjj, 50), Cells(jjj, 50)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 50), Cells(jjj + 1, 50)).Select
Selection.Delete Shift:=xlToLeft

'3. REFERANSIN TELEFONUNUN KOPYALANMASI
A2S2.Range("H40:L40").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 51), Cells(jjj + 1, 51)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 51), Cells(jjj + 1, 51)).Copy
Range(Cells(jjj, 51), Cells(jjj, 51)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 51), Cells(jjj + 1, 51)).Select
Selection.Delete Shift:=xlToLeft

'3. REFERANSIN ŞİRKETİN KOPYALANMASI
A2S2.Range("M40:N40").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 52), Cells(jjj + 1, 52)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 52), Cells(jjj + 1, 52)).Copy
Range(Cells(jjj, 52), Cells(jjj, 52)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 52), Cells(jjj + 1, 52)).Select
Selection.Delete Shift:=xlToLeft

'3. REFERANSIN ÜNVANININ KOPYALANMASI
A2S2.Range("O40:P40").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 53), Cells(jjj + 1, 53)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 53), Cells(jjj + 1, 53)).Copy
Range(Cells(jjj, 53), Cells(jjj, 53)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 53), Cells(jjj + 1, 53)).Select
Selection.Delete Shift:=xlToLeft

'BAŞVURULAN POZİSYONUN KOPYALANMASI
A2S2.Range("F41:P41").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 54), Cells(jjj + 1, 54)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 54), Cells(jjj + 1, 54)).Copy
Range(Cells(jjj, 54), Cells(jjj, 54)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 54), Cells(jjj + 1, 54)).Select
Selection.Delete Shift:=xlToLeft

'BAŞVURULAN LOKASYONUN KOPYALANMASI
A2S2.Range("F42:P42").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 55), Cells(jjj + 1, 55)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 55), Cells(jjj + 1, 55)).Copy
Range(Cells(jjj, 55), Cells(jjj, 55)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 55), Cells(jjj + 1, 55)).Select
Selection.Delete Shift:=xlToLeft

'NOT 1 KOPYALANMASI
A2S2.Range("D43:P43").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 56), Cells(jjj + 1, 56)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 56), Cells(jjj + 1, 56)).Copy
Range(Cells(jjj, 56), Cells(jjj, 56)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 56), Cells(jjj + 1, 56)).Select
Selection.Delete Shift:=xlToLeft

'NOT 2 KOPYALANMASI
A2S2.Range("D44:P44").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 57), Cells(jjj + 1, 57)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 57), Cells(jjj + 1, 57)).Copy
Range(Cells(jjj, 57), Cells(jjj, 57)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 57), Cells(jjj + 1, 57)).Select
Selection.Delete Shift:=xlToLeft

'NOT 3 KOPYALANMASI
A2S2.Range("D45:P45").Copy
A1S1.Activate
With Worksheets("Sayfa1")
.Activate
.Range(Cells(jjj + 1, 58), Cells(jjj + 1, 58)).Select
.Paste
End With
Application.CutCopyMode = False
Range(Cells(jjj + 1, 58), Cells(jjj + 1, 58)).Copy
Range(Cells(jjj, 58), Cells(jjj, 58)).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Selection.UnMerge
Range(Cells(jjj + 1, 58), Cells(jjj + 1, 58)).Select
Selection.Delete Shift:=xlToLeft

'''Check Boxlar Kontrol Edilecek
GoTo 4444444
'TC KUTUCUĞU
A2S2.Activate


[COLOR="Red"]Dim Picture As Object
Set s1 = Sheets(ActiveSheet.Name)
say = 2
For k = 2 To 19
For Each Picture In s1.Shapes
If TypeName(s1.Shapes(Picture.Name).OLEFormat.Object) = "CheckBox" Then
If Picture.Name = "Check Box " & k Then
If s1.Shapes(Picture.Name).OLEFormat.Object.Value = 1 Then
Workbooks(A1S1).Sheets(1).Cells(jjj, k + 57) = "İşaretli"
Else
Workbooks(A1S1).Sheets(1).Cells(jjj, k + 57) = "İşaretsiz"
End If
End If
End If
Next Picture
Next k[/COLOR]


4444444
iii = iii + 12
jjj = jjj + 13


KTP.Save: ASIII.Quit


Application.Wait Time + TimeSerial(0, 0, 5)


Next


Range("B2").Select
Selection.EntireRow.Delete

Range("C2").Select
Selection.EntireColumn.Delete
Range("C2").Select
Selection.EntireColumn.Delete

kkk = 3

For iii = 14 To DosyaSayisi
Range(Cells(kkk, 1), Cells(kkk + 11, 1)).Select
Selection.EntireRow.Delete
iii = iii + 12
kkk = kkk + 1
Next









For zzz = 1 To DosyaSayisi2 + 2
For ttt = 1 To jjj + 2
On Error Resume Next
Range("B" & zzz).Select
ActiveCell.FormulaR1C1 = ""
Range("B" & zzz).Select
ActiveSheet.Shapes.Range(Array("Picture " & ttt)).Select
Selection.Placement = xlMoveAndSize
ActiveSheet.Shapes.Range(Array("Resim " & ttt)).Select
Selection.Placement = xlMoveAndSize
ActiveSheet.Shapes.Range(Array("Fotoğraf " & ttt)).Select
Selection.Placement = xlMoveAndSize
Next
Next

Sheets(1).Cells(1, 2) = "FOTOĞRAF"
Sheets(1).Cells(1, 3) = "AD SOYAD"
Sheets(1).Cells(1, 4) = "DOĞUM YERİ"
Sheets(1).Cells(1, 5) = "DOĞUM TARİHİ"
Sheets(1).Cells(1, 6) = "TC KİMLİK NO"
Sheets(1).Cells(1, 7) = "DİĞER KİMLİK NO"
Sheets(1).Cells(1, 8) = "CEP TEL NO"
Sheets(1).Cells(1, 9) = "EV TEL NO"
Sheets(1).Cells(1, 10) = "E-MAİL ADRESİ"
Sheets(1).Cells(1, 11) = "ANNE ADI"
Sheets(1).Cells(1, 12) = "ANNE MESLEĞİ"
Sheets(1).Cells(1, 13) = "BABA ADI"
Sheets(1).Cells(1, 14) = "BABA MESLEĞİ"
Sheets(1).Cells(1, 15) = "KARDEŞ SAYISI"
Sheets(1).Cells(1, 16) = "EV ADRESİ"
Sheets(1).Cells(1, 17) = "ACİL DURUMDA U. KİŞİ"
Sheets(1).Cells(1, 18) = "ACİL DURUMDA U. KİŞİ Y. DERECESİ"
Sheets(1).Cells(1, 19) = "ACİL DURUMDA U. KİŞİ TEL NO"
Sheets(1).Cells(1, 20) = "EHLİYET TÜRÜ"
Sheets(1).Cells(1, 21) = "DİĞER YABANCI DİL"
Sheets(1).Cells(1, 22) = "LİSE BİLGİSİ"
Sheets(1).Cells(1, 23) = "1. ÜNİVERSİTE BİLGİSİ"
Sheets(1).Cells(1, 24) = "2. ÜNİVERSİTE BİLGİSİ"
Sheets(1).Cells(1, 25) = "YÜKSEK LİSANS BİLGİSİ"
Sheets(1).Cells(1, 26) = "1. FİRMA BİLGİSİ"
Sheets(1).Cells(1, 27) = "1. FİRMA GÖREV BİLGİSİ"
Sheets(1).Cells(1, 28) = "1. FİRMA SÜRE BİLGİSİ"
Sheets(1).Cells(1, 29) = "1. FİRMA GÖREV TANIMI"
Sheets(1).Cells(1, 30) = "2. FİRMA BİLGİSİ"
Sheets(1).Cells(1, 31) = "2. FİRMA GÖREV BİLGİSİ"
Sheets(1).Cells(1, 32) = "2. FİRMA SÜRE BİLGİSİ"
Sheets(1).Cells(1, 33) = "2. FİRMA GÖREV TANIMI"
Sheets(1).Cells(1, 34) = "3. FİRMA BİLGİSİ"
Sheets(1).Cells(1, 35) = "3. FİRMA GÖREV BİLGİSİ"
Sheets(1).Cells(1, 36) = "3. FİRMA SÜRE BİLGİSİ"
Sheets(1).Cells(1, 37) = "3. FİRMA GÖREV TANIMI"
Sheets(1).Cells(1, 38) = "SSK PRİM TARİHİ"
Sheets(1).Cells(1, 39) = "CV DOLDURMA TARİHİ"
Sheets(1).Cells(1, 40) = "1. REFERANS AD SOYAD"
Sheets(1).Cells(1, 41) = "1. REFERANS TEL NO"
Sheets(1).Cells(1, 42) = "1. REFERANS ŞİRKET"
Sheets(1).Cells(1, 43) = "1. REFERANS ÜNVAN"
Sheets(1).Cells(1, 44) = "2. REFERANS AD SOYAD"
Sheets(1).Cells(1, 45) = "2. REFERANS TEL NO"
Sheets(1).Cells(1, 46) = "2. REFERANS ŞİRKET"
Sheets(1).Cells(1, 47) = "2. REFERANS ÜNVAN"
Sheets(1).Cells(1, 48) = "3. REFERANS AD SOYAD"
Sheets(1).Cells(1, 49) = "3. REFERANS TEL NO"
Sheets(1).Cells(1, 50) = "3. REFERANS ŞİRKET"
Sheets(1).Cells(1, 51) = "3. REFERANS ÜNVAN"
Sheets(1).Cells(1, 52) = "BAŞVURULAN POZİSYON"
Sheets(1).Cells(1, 53) = "BAŞVURULAN LOKASYON"
Sheets(1).Cells(1, 54) = "NOT 1"
Sheets(1).Cells(1, 55) = "NOT 2"
Sheets(1).Cells(1, 56) = "NOT 3"
Sheets(1).Cells(1, 57) = "TC KUTUCUĞU"
Sheets(1).Cells(1, 58) = "BAYAN KUTUCUĞU"
Sheets(1).Cells(1, 59) = "ERKEK KUTUCUĞU"
Sheets(1).Cells(1, 60) = "BEKAR KUTUCUĞU"
Sheets(1).Cells(1, 61) = "EVLİ KUTUCUĞU"
Sheets(1).Cells(1, 62) = "ASKERLİK TAMAMLANDI KUTUCUĞU"
Sheets(1).Cells(1, 63) = "ASKERLİK TECİL EDİLDİ KUTUCUĞU"
Sheets(1).Cells(1, 64) = "ASKERLİK MUAF KUTUCUĞU"
Sheets(1).Cells(1, 65) = "SÜRÜCÜ EHLİYETİ VAR KUTUCUĞU"
Sheets(1).Cells(1, 66) = "SÜRÜCÜ EHLİYETİ YOK KUTUCUĞU"
Sheets(1).Cells(1, 67) = "İNGİLİZCE AZ KUTUCUĞU"
Sheets(1).Cells(1, 68) = "İNGİLİZCE ORTA KUTUCUĞU"
Sheets(1).Cells(1, 69) = "İNGİLİZCE İYİ KUTUCUĞU"
Sheets(1).Cells(1, 70) = "DİĞER YABANCI DİL AZ KUTUCUĞU"
Sheets(1).Cells(1, 71) = "DİĞER YABANCI DİL ORTA KUTUCUĞU"
Sheets(1).Cells(1, 72) = "DİĞER YABANCI DİL İYİ KUTUCUĞU"
Sheets(1).Cells(1, 73) = "İŞKUR VAR KUTUCUĞU"
Sheets(1).Cells(1, 74) = "İŞKUR YOK KUTUCUĞU"
Cells.Select
    With Selection
        .HorizontalAlignment = xlGeneral
        .VerticalAlignment = xlCenter
        .WrapText = False
        .Orientation = 0
        .AddIndent = False
        .IndentLevel = 0
        .ShrinkToFit = False
        .ReadingOrder = xlContext
        .MergeCells = False
    End With
    Cells.EntireColumn.AutoFit
Columns("B:B").ColumnWidth = 30
Columns("A:A").ColumnWidth = 30
Sheets(1).Cells(1, 2).Select


Set klasor = Nothing


Application.ScreenUpdating = True


MsgBox "İşlem Tamam."


End Sub
 
Katılım
29 Haziran 2009
Mesajlar
9
Excel Vers. ve Dili
2003
Halit Bey merhaba,

Yardımlarınız için çok teşekkür ederim.

Kolay gelsin.
 
Üst