Shift a referenced cell in another Worksheet 3 columns.

Lambrix

Board Regular
Joined
Jun 29, 2012
Messages
62
Greetings,

This might be a simple noob question but I cant seem to wrap my head around it. In column I3, I reference data on another worksheet. I want the formula format to shift to the right 3 columns each time.

Here is the original info: I3='0152'!O3, I want to create a formula that will reference 3 columns to the right of the data linked in I3. So '0152'!R3 in this example. Is there an easy way to accomplish this?
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
If I'm understanding your question correctly...

Code:
Function indref(r As Range) As String
indref = Range(Right(r.Formula, 2)).Offset(0, 3).Value
End Function
 
Upvote 0
Correction...

Code:
Function indref(r As Range) As String
indref = Range(Mid(r.Formula, 2)).Offset(0, 3).Value
End Function
 
Upvote 0

Forum statistics

Threads
1,215,265
Messages
6,123,961
Members
449,135
Latest member
jcschafer209

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