Declaring multiple variable on one line is difficult to read and potentially misleading since the As
typing only applies to the last
variable on the line.
Noncompliant code example
Public AAA, BBB, CCC As String ' AAA and BBB are variants
Compliant solution
Public AAA as String
Public BBB as String
Public CCC as String