Merging collapsible if statements increases the code’s readability.
if
If condition1 Then If condition2 Then ' Noncompliant ' ... End If End If
If condition1 AndAlso condition2 Then ' ... End If