DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub mesai()
Dim sat As Long, isat As Long
Dim i As Integer, k As Long, j As Byte
Sheets("genel liste").Select
Application.ScreenUpdating = False
Range("A6:D65536").ClearContents
sat = 6
For i = 1 To Worksheets.Count
If Sheets(i).Name <> "genel liste" Or Sheets(i).Name <> "açıklama" Then
isat = Sheets(i).Cells(65536, "B").End(xlUp).Row
For k = 6 To isat
If Sheets(i).Cells(k, "D").Value <> 0 Then
Cells(sat, "A").Value = sat - 5
For j = 2 To 4
Cells(sat, j).Value = Sheets(i).Cells(k, j).Value
Next j
sat = sat + 1
End If
Next k
End If
Next i
Application.ScreenUpdating = True
MsgBox "Mesailer listelendi..!!", vbOKOnly + vbInformation, Application.UserName
End Sub