DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Sira_Ver()
Dim son As Long
son = Cells(Rows.Count, "A").End(xlUp).Row
If son < 2 Then Exit Sub
Cells(son, "A").Value = son
Range("A1:A" & son).DataSeries Rowcol:=xlColumns, _
Type:=xlLinear, Date:=xlDay, Step:=1
End Sub
Sub Auto_Open()
FareMenu
End Sub
Sub FareMenu()
Dim cb As CommandBar, MenuObject
Set cb = Application.CommandBars("Cell")
Set MenuObject = cb.Controls.Add(Type:=msoControlButton, Temporary:=True)
With MenuObject
.OnAction = "Sira_Ver"
.FaceId = 9
.Caption = "Yeni--->Sıra No Ekle"
End With
Set cb = Nothing: Set MenuObject = Nothing
End Sub
Sub Auto_Close()
Application.CommandBars("Cell").Reset
End Sub