Excel

di il
1 risposte

Excel

È possibile nascondere nel foglio excel , tutte le formule , usando un codice con VBA?

1 Risposte

  • Re: Excel

    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?
Devi accedere o registrarti per scrivere nel forum
1 risposte