would I ever need to ues or start with a dim? It always seams to work with out one. Foe example :
Sub Cake()
Dim jb As String
jb = InputBox("do you like cake? Yes/No", "CAKE")
If jb = "Yes" Or jb = "yes" Then
MsgBox "Go For It", , "GOOD"
End If
If jb = "No" Or jb =...