FatherXmas,
Thanks for the code. This looks like it will the perfect solution! However, I tried it, and it got hung up in the debugger. This is my macro:
Sub Find_value()
'
' Find_value Macro
' Macro recorded 7/2/2004 by Aaron Coppersmith
'
'
WhatImlookingFor = InputBox(Prompt:="What are you looking for?", Title:="Find Values")
Dim X As Range
Set X = Cells.Find(what:=WhatImlookingFor, After:=ActiveCell, LookIn:=xlValues, lookat:=xlWhole)
MsgBox X.Address
[/cde]
End Sub
The message that I got was:
Run-time error '91'
Object variable or With block variable not set.
Do you know how to get past this?
Thanks!
Aaron