vorrei far apparire un messaggio in cui viene indicato il nr di riga prima di quello della cella attivo.
Questo perchè ho una tabella (schema entrate) di cui si è parlato qui, in cui la numerazione è sfalsata di una riga.
Al momento ho reperito in rete questa Macro:
- Codice: Seleziona tutto
Dim KeyCells As Range
' The variable KeyCells contains the cells that will
' cause an alert when they are changed.
Set KeyCells = Range("H2:H201")
If Not Application.Intersect(KeyCells, Range(Target.Address)) _
Is Nothing Then
' Display a message when one of the designated cells has been
' changed.
' Place your code here.
MsgBox "ENTRATA NR" & ActiveCell.Row
End If
Non riesco a trovare il modo di sottrarre 1 al risultato della macro..