VBA - filter column with multiple workbooks open

tanyaleblanc

Board Regular
Joined
Mar 16, 2019
Messages
145
I have three workbooks open, I've completed my tasks on the first workbook (Adjustment Report) and now I'm ready to complete my tasks on the second workbook (New Rental Contract). I want to activate the new rental contract report and put a filter on column O to filter for Takeover, the coding below is not working, not sure why I've used this same coding in other macros just tweaked it for this one.


lastrow = ActiveSheet.Range("A500").End(xlUp).Row
Windows("New Rental Contract.xls").Activate
.AutoFilterMode = False
With Range("a7:an7")
.AutoFilter
.AutoFilter field:=15, Criteria1:="Takeover"
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
I figured this out and it works, please disregard

I have three workbooks open, I've completed my tasks on the first workbook (Adjustment Report) and now I'm ready to complete my tasks on the second workbook (New Rental Contract). I want to activate the new rental contract report and put a filter on column O to filter for Takeover, the coding below is not working, not sure why I've used this same coding in other macros just tweaked it for this one.


lastrow = ActiveSheet.Range("A500").End(xlUp).Row
Windows("New Rental Contract.xls").Activate
.AutoFilterMode = False
With Range("a7:an7")
.AutoFilter
.AutoFilter field:=15, Criteria1:="Takeover"
 
Upvote 0

Forum statistics

Threads
1,214,938
Messages
6,122,346
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top