Copying a Sheet and Redirecting Cell References

Devin

Board Regular
Joined
Jan 21, 2009
Messages
105
I have a solution to my problem, but I am wondering if there is any other/easier way to solve it. Thanks.
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
<o:p></o:p>
I need to create a new sheet copied from the following sheet:
‘Sheet Two’, cell “A1” = 1
‘Sheet Two’ cell “B1”, = A1+’Sheet One’!B1

When the new sheet is created, I need the reference to “Sheet One” to automatically change to “Sheet Two.”
‘Sheet Three’, cell “A1”=1
‘Sheet Three’, cell “B1”= A1+’Sheet Two’!B1


Code:

<o:p></o:p>
Sub NewSheet()
Dim OldSheet As String

OldSheet = ActiveSheet.Name

ActiveSheet.Copy After:=Sheets(OldSheet)

Range("B1").Select
ActiveCell.FormulaR1C1 = "=RC[-1]+'" & OldSheet & "'!RC"
<o:p></o:p>
End Sub




</PRE>
<!-- / message -->
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.

Forum statistics

Threads
1,221,186
Messages
6,158,413
Members
451,492
Latest member
ichinisan123

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