So, I'm working on a file in 1.1 Fixed Purch
tab. Just basically clearing contents from certain cells and bringing updated material from BACKEND_Purchases_New_6-14-2018.xlsm
file tab called "Contract Fixed". Both files are in same directory. Only one issue, I want the macro to ignore date when I'm pulling from BACKEND_Purchases_New_6-14-2018.xlsm
file. How will I do that using below VBA?
Please explain in a way I can understand completely since I'm a beginner.
Sub attri_kinda_new()
'
' attri_kinda_new Macro
'
Sheets("1.1 Fixed Purch").Select
ActiveWindow.SmallScroll Down:=-3
Range("B4:G4500").Select
Selection.ClearContents
Call Workbooks.Open(Filename:="BACKEND_Purchases_New_6-14-2018.xlsm", local:=True)
Sheets("Contract Fixed").Select
ActiveWindow.SmallScroll Down:=-18
Range("AG2:AL5000").Select
Selection.Copy
Windows("US M2M Attribution 6-14-2018 training.xlsm").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
End Sub