ciao
scusa il ritardo ma non ti avevo letto
perchè T17
è calcolata da questa macro
`Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If IsEmpty(Target) Then Exit Sub
If Not Intersect(Target, Range("D4:AH15", "T17")) Is Nothing Then
newval = Target.Value
Application.EnableEvents = False
Application.Undo 'the previous value is re-established.
If Not IsNumeric(Target.Value) Then Target.Value = "0"
oldval = Target.Value
If oldval = " " Or oldval = "" Then
Target.Value = newval
Else
Target.Value = oldval + newval
If oldval + newval = 0 Then Target.Value = ""
If newval = 0 Then Target.Value = ""
End If
Application.EnableEvents = True
End If
End Sub`
in pratica T17 somma il valore della cella con il valore nuovo che scrivi
perciò
se metti la formula in T17
il primo risutato sarà giusto......0+nuovo inserimento
ma la formula verrà eliminata