Code:
Select Case t And mph
Juicy, I think this is your sticking point right now. You're trying to code in English, but that's not how the computer thinks. "AND" is an operator to the computer. Read this wikipedia article to see what is happening under the hood. In your case "t And mph" combine together to make one number. You should only use a select case on one variable except in rare cases.