There is no multiline comment blocking in VBA, however, you can simulate it with a silly trick like this:
If 1=2 Then
\'You can comment large blocks of code with this trick.
\'But, any text comments must be formatted properly with the normal quote syntax.
End If