Private Sub ToggleButtonEnglish_Click()
    Call Clear
    ToggleButtonEnglish.Value = True
End Sub

Private Sub ToggleButtonMetric_Click()
    Call Clear
    ToggleButtonMetric.Value = True
End Sub

Sub Clear()
    ToggleButtonEnglish.Value = False
    ToggleButtonMetric.Value = False
End Sub
Why does this give me an Out of Stack Space error?

It's only being called when I click on that toggle button, so it shouldn't be looping through, should it?

Thanks.

Essentially I'm simply trying to make it so only one ToggleButton is active at one time. I've tried several things on my own (If/Else statements) along with other's online, but I've gotten nowhere. This is the most recent and doesn't do as it seems it should.