DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
[FONT="Trebuchet MS"]Private Sub [COLOR="Red"]Workbook_SheetChange[/COLOR](ByVal Sh As Object, ByVal Target As Range)
If [COLOR="red"]Target.Address(0, 0)[/COLOR] <> "[COLOR="red"]A1[/COLOR]" Then Exit Sub
[COLOR="red"]ActiveSheet[/COLOR].Name = [COLOR="red"]Target[/COLOR].Value
End Sub[/FONT]
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Target.Address(0, 0) = "M1" And [n1] = "" Then
ActiveSheet.Name = Target.Value
End If
End Sub
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Intersect(Target, Range("m1")) Is Nothing Then Exit Sub
If [n1] = "" Then
ActiveSheet.Name = Target.Value
End If
End Sub