- Katılım
- 1 Mart 2005
- Mesajlar
- 22,239
- Excel Vers. ve Dili
- Win7 Home Basic TR 64 Bit
Ofis-2010-TR 32 Bit
İyi geceler.Anlaştık üstadım. İyi geceler diliyorum.
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
İyi geceler.Anlaştık üstadım. İyi geceler diliyorum.
Sub aktar59()
Dim i As Long, sh As Worksheet, sonsat As Long, sat As Long
Sheets("ÇALIŞMA").Select
sonsat = Range("F1").Value
Set sh = Sheets("ÇEVRİM")
sat = 2
Application.Calculation = xlCalculationManual
For i = 2 To 32
If Cells(i, "E").Value <> "TAMAM" Then
sat = sat + 27
sh.Cells(sat, "B").Value = Cells(i, "C").Value
End If
Next i
Application.Calculation = xlCalculationAutomatic
sh.Select
Set sh = Nothing
MsgBox "İşlem Tamamlandı." & vbLf & "evrengizlen@hotmail.com"
End Sub
Dosyanız ektedir.
Kod:Sub aktar59() Dim i As Long, sh As Worksheet, sonsat As Long, sat As Long Sheets("ÇALIŞMA").Select sonsat = Range("F1").Value Set sh = Sheets("ÇEVRİM") sat = 2 Application.Calculation = xlCalculationManual For i = 2 To 32 If Cells(i, "E").Value <> "TAMAM" Then sat = sat + 27 sh.Cells(sat, "B").Value = Cells(i, "C").Value End If Next i Application.Calculation = xlCalculationAutomatic sh.Select Set sh = Nothing MsgBox "İşlem Tamamlandı." & vbLf & "evrengizlen@hotmail.com" End Sub
Sub aktar59()
Dim i As Long, sh As Worksheet, sonsat As Long, sat As Long
Dim k As Range
Sheets("ÇALIŞMA").Select
sonsat = Range("F1").Value
Set sh = Sheets("ÇEVRİM")
sat = 2
'Application.Calculation = xlCalculationManual
For i = 2 To sonsat
If Cells(i, "E").Value <> "TAMAM" Then
sat = sat + 27
sh.Cells(sat, "B").Value = Cells(i, "C").Value
End If
Next i
'Application.Calculation = xlCalculationAutomatic
sh.Select
Set sh = Nothing
MsgBox "İşlem Tamamlandı." & vbLf & "evrengizlen@hotmail.com"
End Sub
ekli dosyadaki gibimi olacak.
Kod:Sub aktar59() Dim i As Long, sh As Worksheet, sonsat As Long, sat As Long Dim k As Range Sheets("ÇALIŞMA").Select sonsat = Range("F1").Value Set sh = Sheets("ÇEVRİM") sat = 2 'Application.Calculation = xlCalculationManual For i = 2 To sonsat If Cells(i, "E").Value <> "TAMAM" Then sat = sat + 27 sh.Cells(sat, "B").Value = Cells(i, "C").Value End If Next i 'Application.Calculation = xlCalculationAutomatic sh.Select Set sh = Nothing MsgBox "İşlem Tamamlandı." & vbLf & "evrengizlen@hotmail.com" End Sub
İyi akşamlar.