View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ivyleaf Ivyleaf is offline
external usenet poster
 
Posts: 141
Default Macro's, filtering, the result of the filter and copying thatcell

On Apr 5, 3:02*am, Bob wrote:
Hello, *
I've recorded a macro that does almost everything I need it to do. *The
problem I'm having is that it copies the exact same cell every time no matter
what the filter does. *Of course, when I recorded it, it was correct but when
I work with new data and run the macro, it copies the exact cell from the
time the macro was recorded not the official result of the filters.

I need the macro to copy the results of the filter not the exact same cell
everytime. *Here is Visual Basic code that was written during the time of the
recording. *The Range of "W15" is where I believe I need the change. *Any
help on correcting the problem would be appreciated. *

* * Selection.AutoFilter Field:=1, Criteria1:="400w x 400h"
* * Selection.AutoFilter Field:=2, Criteria1:="Center facing"
* * Selection.AutoFilter Field:=3, Criteria1:="Transparent"
* * Range("W15").Select
* * Application.CutCopyMode = False
* * Selection.Copy
* * Sheets("Macro Sheet").Select
Regards,

Bob


Hi Bob,

Would I be correct in assuming that once you have applied the three
filters, there is only one row left visible and you want you want the
value from that row in column W?

Cheers,
Ivan.