Not familiar with the Excel 2002 InputBox, but
AFAIK inputbox only
returns a string.
Your prompt says "please select". If the inputbox allows a range
selection to be made you could presumably use :-
Dim MyRange as Range
Set MyRange=Selection
Otherwise you need to use
Set MyRange = Range(Application.InputBox _
(Prompt:="Please Select a Data Range
(Block) to Search for", Title:=".", Type:=8))
---
Message posted from
http://www.ExcelForum.com/