View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] bramnizzle@gmail.com is offline
external usenet poster
 
Posts: 36
Default Find Method question...

I found this bit of code on the internet.

Copy all the rows that have the value 1000 in column D and paste to
Sheet2:
Find_Range(1000, Columns("D"), xlFormulas, xlWhole).EntireRow.Copy
Range("Sheet2!A1")

This finds the value 1000 in column D. I want to be able to find a
negative value in column D.

Any clue?