"to many line continuation"

A

an

Hello!

To prevent the message:
"to many line continuation"

Is possible to change next:

If [A] = "XXX" Then
.Visible = False
[C].Visible = False
[D].Visible = False
[E].Visible = True
Else
End If

For something seemed with

If[A] = "XXX" Then
[A];;[C];[D].Visible = False And [E].Visible = True
Else
End If

Thanks in advance.
an
 
M

Myrna Larson

The message doesn't have anything to do with the code you show. It means you
have too many lines that end with " _" (without the quotes) to continue them
onto the next physical line on the screen.

Your proposed syntax, with the semicolons, is not allowed.
 
Top