Thanks, Tom, this really helps. Tell me, is there another site that would
help me create a pop up box that prompts for criteria. I want to create this
and have the data that is input into the popup box populate a cell in the
worksheet and then run a macro that selects the entire row that matches that
cell creating a new workbook book with those row. What do you think?
> See Chip Pearson's page on programming the VBE
>
[quoted text clipped - 139 lines]
> a
> > module in the new workbook. Can someone help?
Tom Ogilvy - 28 Feb 2006 16:15 GMT
Dim rng as Range
set rng = Columns(1).Find(Inputbox("Enter value in column A to search for"))
if not rng is nothing then
rows(rng.row).EntireRow.Select
Else
msgbox "Not found"
End if

Signature
Regards,
Tom Ogilvy
> Thanks, Tom, this really helps. Tell me, is there another site that would
> help me create a pop up box that prompts for criteria. I want to create this
[quoted text clipped - 145 lines]
> > a
> > > module in the new workbook. Can someone help?