View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein \(MVP - VB\)[_1549_] Rick Rothstein \(MVP - VB\)[_1549_] is offline
external usenet poster
 
Posts: 1
Default msg box to stop user if range is "" (tricky one)

i get the

Call Msgbox "unable to clear" in red aswell...


Also a typo. Use either this....

Call MsgBox("unable to clear")

or this...

MsgBox "unable to clear"

Rick