I have a loop that if a condition is met I need it to loop early. How is that possible?

Here is the code:

For Each rngCode In rngArea.Cells
            If IsNumeric(rngCode) Then
                'Loop if this condition is true
            End If
'More code that I do not want to run if the first condition is true.
next rngCode
I cannot use an else on the if statement for this purpose because I have other ifs that are needed. for different purposes.