Example: Formatting expressions
The following expression:
If (tag_1 > tag_2) Then 0 Else If (tag_1 > tag_3) Then 2 Else 4
could be condensed to the following:
If (tag_1 > tag_2) Then 0 Else If (tag_1 > tag_3) Then 2 Else 4
Provide Feedback