Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Or, to use your references:
If Cells(22, 11).Value = "QS" Then MsgBox "New code" Exit Sub End If if you do not want this to be case sensitive: If UCase(Cells(22, 11).Value) = "QS" Then MsgBox "New code" Exit Sub End If --- Regards, Norman "Norman Jones" wrote in message news:... Hi Pat, Try: If Cells(1, 1).Value = "QS" Then MsgBox "New code" Exit Sub End If --- Regards, Norman |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Message Box - more help please !! | Excel Worksheet Functions | |||
changing the message in an error message | Excel Worksheet Functions | |||
Displaying a message in a message box without requiring user to click anything to proceed | Excel Programming | |||
Message box | Excel Programming | |||
Message Box | Excel Programming |