Thread: Error Box
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Leith Ross[_539_] Leith Ross[_539_] is offline
external usenet poster
 
Posts: 1
Default Error Box


Hello Chalky,

Try using an InputBox...

If Range("M57") = "" Then
Answer = InputBox("Please enter a value.")
If Answer < "" Then Range("M57") = Answer
Else
....
End If

Sincerely,
Leith Ross


--
Leith Ross
------------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465
View this thread: http://www.excelforum.com/showthread...hreadid=509435