DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Workbook_Open()
gun = Day(Date): ay = Month(Date): yil = Year(Date)
If Len(gun) = 1 Then: gun = "0" & gun
If Len(ay) = 1 Then: ay = "0" & ay
For i = 1 To Sheets.Count
If Sheets(i).Name = gun & "." & ay & "." & yil Then GoTo sonuc
Next i
MsgBox "Dosyada eşleşen bir gün bulunamadı", vbCritical, "UYARI"
Sheets(1).Select
Exit Sub
sonuc:
Sheets(i).Select
End Sub
Private Sub CommandButton1_Click()
ListBox1.RowSource = "A1:B" & Cells(65536, "A").End(xlUp).Row
End Sub
Private Sub UserForm_Initialize()
ListBox1.ColumnCount = 2
End Sub
Private Sub CommandButton5_Click()
Dim sat As Long
If ListBox1.ListIndex < 0 Then Exit Sub
sat = ListBox1.ListIndex + 1
ListBox1.RowSource = ""
Range(Cells(sat, "A"), Cells(sat, "B")).Delete (xlUp)
ListBox1.RowSource = "A1:B" & Cells(65536, "A").End(xlUp).Row
End Sub