VBA Active.Sheet in Formula

Illinin09

New Member
Joined
Jan 25, 2015
Messages
5
I have a macro that currently places this formula in the cell, but I want to switch the sheet name to Active.Sheet-1. Basically whatever the previous sheet is. Any Ideas on how to go about that?

ActiveCell.FormulaR1C1 = _ "=IFERROR(AVERAGEIF('Batting LHP Data'!R2C1:R999999C1,RC1,'Batting LHP Data'!R2C39:R999999C39),0)"
 
Last edited:

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
You can find the Sheet Index like this:

Code:
ActiveSheet.Index

So you could probably do something like:

Code:
Sheets(ActiveSheet.Index - 1).Range(YOUR RANGE)
 
Upvote 0

Forum statistics

Threads
1,203,379
Messages
6,055,095
Members
444,761
Latest member
lneuberger

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