Macro code not pasting where I want it to

badam1212

New Member
Joined
Jul 25, 2017
Messages
19
Hello- the below code from my macro is not pasting in cell A1 on the sheet I want it to, but instead is pasting into a random place on the sheet. Can I add something here in order for the results at the end of my macro to paste in A1?

*It selects data from another workbook and then opens template.xlsm. Here is where I want it to paste into cell A1. (the code used to have Range("D13").Select, but I changed that in an attempt to solve this issue.

Windows("template.xlsm").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A1").Select

Thank you!
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Change Selection to Range("A1")
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0
Sorry - maybe you can help with this too? Same code, but the workbook I'm copying from, I would like it to close w/o saving changes before my macro is complete.

So I'm selecting data from "CWL Setup Tracker.xlsm" and then:

(opening my "template" file):

Windows("template.xlsm").Activate
Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A1").Select

(pasting everything I want into A1)

But before I show my MsgBox indicating the macro run is complete, I want to close out of "CWL Setup Tracker.xlsm". Does that make sense?

I appreciate your help! Let me know if you need more info.
 
Upvote 0
Could you supply your entire code.
When doing so please use code tags, the # icon in the reply window
 
Upvote 0
Code:
Sub AABig3Template()'
' AABig3Template Macro
'


'
    Workbooks.Open Filename:= _
        "\\hijk.com\shared\Ecommerce\Reporting\2018 Reports\Content\Setup Tracker\CWL Setup Tracker.xlsm"
    Sheets("DATA").Select
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=1, Criteria1 _
        :=Array("2017/10/01", "2017/11/01", "2017/12/01", "2018/01/01", "2018/02/01", _
        "2018/03/01", "2018/04/01", "2018/05/01", "2018/06/01", "2018/07/01", "2018/08/01", _
        "2018/09/01"), Operator:=xlFilterValues
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=2, Criteria1 _
        :="Smith, John D"
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=3, Criteria1 _
        :=Array("Jones, Sam B", "Adams, Kate", "Holmes, Erin N"), Operator:= _
        xlFilterValues
    ActiveWindow.SmallScroll ToRight:=24
    Range("Table_Detail[[#Headers],[SUB_CLASS_NUMBER]]").Select
    ActiveWindow.SmallScroll ToRight:=-5
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=23, _
        Criteria1:=Array("1577", "544", "9835"), Operator:=xlFilterValues
    ActiveWindow.ScrollColumn = 19
    ActiveWindow.ScrollColumn = 1
    Range("Table_Detail[[#Headers],[Target Month]:[DEPARTMENT_NUMBER]]").Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("template.xlsm").Activate
    Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("A1").Select
    
MsgBox "Done."


End Sub
 
Last edited by a moderator:
Upvote 0
You forgot the code tags ;)

try
Code:
Sub AABig3Template() '
' AABig3Template Macro
'

   Dim Wbk As Workbook
'
    Set Wbk = Workbooks.Open(FileName:= _
        "\\hijk.com\shared\Ecommerce\Reporting\2018 Reports\Content\Setup Tracker\CWL Setup Tracker.xlsm")
    Sheets("DATA").Select
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=1, Criteria1 _
        :=Array("2017/10/01", "2017/11/01", "2017/12/01", "2018/01/01", "2018/02/01", _
        "2018/03/01", "2018/04/01", "2018/05/01", "2018/06/01", "2018/07/01", "2018/08/01", _
        "2018/09/01"), Operator:=xlFilterValues
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=2, Criteria1 _
        :="Smith, John D"
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=3, Criteria1 _
        :=Array("Jones, Sam B", "Adams, Kate", "Holmes, Erin N"), Operator:= _
        xlFilterValues
    ActiveWindow.SmallScroll ToRight:=24
    Range("Table_Detail[[#Headers],[SUB_CLASS_NUMBER]]").Select
    ActiveWindow.SmallScroll ToRight:=-5
    ActiveSheet.ListObjects("Table_Detail").Range.AutoFilter Field:=23, _
        Criteria1:=Array("1577", "544", "9835"), Operator:=xlFilterValues
    ActiveWindow.ScrollColumn = 19
    ActiveWindow.ScrollColumn = 1
    Range("Table_Detail[[#Headers],[Target Month]:[DEPARTMENT_NUMBER]]").Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("template.xlsm").Activate
    Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("A1").Select
    Wbk.Close False
MsgBox "Done."


End Sub
 
Upvote 0
I pressed that # button, sorry if I didn't do it correctly!

It works perfectly, but there is another message that pops up that says something about there's a large amount of data, do you want to save it to be able to use it for later, etc...with a Yes, No, Cancel option. I can just press No and that workbook goes away, but can we incorporate that into the code or should I just leave it as is?

Thanks so much!
 
Upvote 0
Add the 2 lines in blue
Code:
    Range("A1").Select
    [COLOR=#0000ff]Application.DisplayAlerts = False[/COLOR]
    Wbk.Close False
  [COLOR=#0000ff]  Application.DisplayAlerts = True[/COLOR]
MsgBox "Done."
 
Upvote 0

Forum statistics

Threads
1,215,379
Messages
6,124,605
Members
449,174
Latest member
ExcelfromGermany

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