make this formula dragable

beekerdale

New Member
Joined
Oct 7, 2019
Messages
9
This formula works good for me for referencing another sheet, but I am looking to increase the size of the sheet to the right,
And so-I am wanting this formula to to reference R100, R101, R102, R103, R104 "and so on" as I drag it to the right.
Any suggestions?

=arrayformula((IMPORTRANGE("1mRD1xdG5YWOeYPJXPrc6xvuMgha54sbtiV-5imIdbC4","TimeSheet!r100")))
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
if this formula is in ColumnA then

VBA Code:
=arrayformula((IMPORTRANGE("1mRD1xdG5YWOeYPJXPrc6xvuMgha54sbtiV-5imIdbC4",INDEX(TimeSheet!R100:R120,COLUMNS($A$1:A1),1))))
And then Drag it
 
Upvote 0
I have updated the formula to this one below,,
I am working on the formula located in C3, And the reference on the other sheet will be from aj43 and dragged to aj51

=arrayformula((IMPORTRANGE("1mRD1xdG5YWOeYPJXPrc6xvuMgha54sbtiV-5imIdbC4",INDEX(TimeSheet!R43:R51,COLUMNS($C$3:C3),1))))

-this formula says "unresolved TimeSheet name"
Thanks for your thoughts, Dale
 
Upvote 0
What about this:
Excel Formula:
 =arrayformula((IMPORTRANGE("1mRD1xdG5YWOeYPJXPrc6xvuMgha54sbtiV-5imIdbC4", Address(Choose(Columns($C$3:C3),43,44,45,46,47,48,49,50,51),18,4,TimeSheet))))
 
Upvote 0
Above formula is for R column, For AJ column Change 18 to 36
Excel Formula:
 =arrayformula((IMPORTRANGE("1mRD1xdG5YWOeYPJXPrc6xvuMgha54sbtiV-5imIdbC4", Address(Choose(Columns($C$3:C3),43,44,45,46,47,48,49,50,51),36,4,TimeSheet))))
 
Upvote 0
Solution
Above formula is for R column, For AJ column Change 18 to 36
Excel Formula:
 =arrayformula((IMPORTRANGE("1mRD1xdG5YWOeYPJXPrc6xvuMgha54sbtiV-5imIdbC4", Address(Choose(Columns($C$3:C3),43,44,45,46,47,48,49,50,51),36,4,TimeSheet))))
That works Maabadi, Thanks so much! You are the best!
 
Upvote 0

Forum statistics

Threads
1,214,596
Messages
6,120,438
Members
448,966
Latest member
DannyC96

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