Macro only Works Certain Tab is Active

RCarlson

New Member
Joined
Jul 26, 2018
Messages
7
I have a very simple question that for some reason I am struggling with. The below macro works fine if I am on the "Output Variance" worksheet. But if I try running it when I am on any other tab it doesn't work. What am I doing wrong?

Sheets("Output Variance").Range("A1", Range("A1").End(xlDown).End(xlToRight)).Copy
Sheets("VertOutputVar").Select
Sheets("VertOutputVar").Range("A1").PasteSpecial xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
End Sub

This macro is to copy data from one worksheet and transpose and paste values only on another worksheet.

Thanks!
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
I have a very simple question that for some reason I am struggling with. The below macro works fine if I am on the "Output Variance" worksheet. But if I try running it when I am on any other tab it doesn't work. What am I doing wrong?

Sheets("Output Variance").Range("A1", Range("A1").End(xlDown).End(xlToRight)).Copy
Sheets("VertOutputVar").Select
Sheets("VertOutputVar").Range("A1").PasteSpecial xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
End Sub

This macro is to copy data from one worksheet and transpose and paste values only on another worksheet.

Thanks!

You are not fully qualifying the copy range ... Try this :
Code:
With Sheets("Output Variance")
    .Range("A1", .Range("A1").End(xlDown).End(xlToRight)).Copy
End With

Sheets("VertOutputVar").Range("A1").PasteSpecial xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
 
Upvote 0

Forum statistics

Threads
1,225,754
Messages
6,186,826
Members
453,377
Latest member
JoyousOne

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