Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static TheFormula As String
If Target.Address = "$A$1" Then
With Target
TheFormula = .Formula
.Value = .Value
End With
Else
With Range("A1")
If Not .HasFormula Then
.Formula = TheFormula
End If
End With
End If
End Sub
Ho un codice di questo genere solo che invece di nascondeere solo la cella A1 vorrei selezionare un Range ( che parte da a1 e arrivi a D10 esempio A1:D10) mi aiutate a modificarlo?