Hello,

I used the code below to call a macro is D1 is a certain text.
If it not true then another macro is called.
The macro's work fine if i just call them without VBA code.
I think somthing is nog right in the "If" line but i don't know what.

Private Sub Language()
    If Range("D1") = "English" Then
        Call Macro1
    Else
        Call Macro2
    End If
End Sub
Tx for helping out!