View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jake Marx[_3_] Jake Marx[_3_] is offline
external usenet poster
 
Posts: 860
Default Heres the proble...

Hi Edwin,

Here's one way to do it:

On Error Resume Next
Application.InputBox("msg","title","A1",,,,,8).Sel ect
On Error Goto 0

--
Regards,

Jake Marx
MS MVP - Excel
www.longhead.com

[please keep replies in the newsgroup - email address unmonitored]


Edwin Merced wrote:
I need to open an uinput box that should ask the user to type in a
range. When the user types the range and clicls a button the range
shoud appear selected. How difficult is this??