Why does the Select Case statement show the message "No"?
It should be "Bubble".
Sub Macro1() Dim Resolução As Integer Resolução = 7 Select Case Resolução Case Resolução = 0, 2, 3, 4, 5, 6 MsgBox ("Ghost") Case Resolução = 1 MsgBox ("Car") Case Resolução = 7, 8 MsgBox ("Bubble") Case Else MsgBox ("No") End Select End Sub