Reference help needed -> R[???]C[1]

andy-s

Board Regular
Joined
Mar 22, 2002
Messages
51
Hi

In the sheet named Data, cell A1 contains the formula =count(B:B)+1

I'm trying to write a code that change the reference of cell A1 in the sheet named Result. The refernce should be =C???, where ??? is the result from A1 from Data.

My code look like:

Code:
Sub Reference()
Sheets("Result").Select
ActiveCell.FormulaR1C1 = "='Data'!R[ ???? ]C[1]"
End Sub

Could anyone help me?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hello, andy-s,

try this
ActiveCell.FormulaR1C1 = "='Data'!R[" & Sheets("Data").Range("A1") & "]C[1]"

if possible avoid to selector activate cells
like this
Range("A1") = 1234
or
Sheets("Results").Range("B5").FormulaR1C1 = "='Data'!R[" & Sheets("Data").Range("A1") & "]C[1]"

kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,225,063
Messages
6,182,639
Members
453,128
Latest member
mike4slund

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