Hi all,
I have a macro that i'm working on that when finished will go into a workbook, select a sheet called "Master", then filter the data in column A by whatever value was entered in a textbox, copy from A to X to another central workbook and repeat for all the workbooks in the folder. At the moment I'm just trying to get it to work on one workbook before setting up the loop, but the problem i'm facing is that when the data is copied and pasted onto the central workbook, there is nothing but blank cells...?
Here is what i have so far...
Sub UpdateMainTracker()
Dim AppDate As Range
Set AppDate = ActiveSheet.Range("A1")
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Workbooks.Open Filename:="F:\New Tracker\Tracker_Annabelle_Davies.xls", Notify:=False
Sheets("Master").Select
ActiveSheet.Unprotect Password:="*********"
Columns("A:U").Select
Selection.AutoFilter
Range("A1").Select
Selection.AutoFilter Field:=1, Criteria1:=AppDate
Range("A2:X50").Select
Selection.Copy
Workbooks.Open Filename:="F:\Daily Tracker\DummyTracker.xls"
Windows("DummyTracker.xls").Activate
Sheets("Jul").Select
Range("A2").Select
ActiveSheet.Paste
Windows("Tracker_Annabelle_Davies.xls").Activate
ActiveWindow.Close
Application.ScreenUpdating = True
Application.DisplayAlerts = True
End Sub
I've set it to copy down to row 50 because there should never be anymore than this. I have also been having problems getting the autofilter to filter by the value in the textbox so I have changed it to filter by the value in A1 for now.
If anyone could help me with regards to filtering by the value in the text box then copying this to the "Dummy Tracker" that would be great as my PC is about to go out of the window (which might anoy my boss!!).
Thanks
Jay
Bookmarks