
Sub Worksheet_Change(ByVal Target As Excel.Range)
'Uno Due tre sono macro scritte in un modulo standard
If Intersect(Target, Range("A1")) Is Nothing Then
Exit Sub
Else
Select Case Target
Case Is = 1
Application.Run ("Uno")
Case Is = 2
Application.Run ("Due")
Case Is = 3
Application.Run ("Tre")
End Select
End If
End Sub
|
Private Sub Worksheet_Activate() ActiveWindow.ScrollRow = Me.UsedRange.Rows.Count - 20 End Sub |
