Auto Increment sheet number ni formulas

hwaghulde

New Member
Joined
Oct 3, 2013
Messages
5
Hello experts,
I am looking for auto increment or auto fill the different sheet number Sheet1, Sheet2, Sheet3........Sheet300. PLease help to get the following in aauto fill mode. BTW i am using EXCEL-2007.

=Sheet1!D$6
=Sheet1!D$9
=Sheet1!D$15
=Sheet2!D$6
=Sheet2!D$9
=Sheet2!D$15
=Sheet3!D$6
=Sheet3!D$9
=Sheet3!D$15
=Sheet4!D$6
=Sheet4!D$9
=Sheet4!D$15
=Sheet5!D$6
=Sheet5!D$9
=Sheet5!D$15
=Sheet6!D$6
=Sheet6!D$9
=Sheet6!D$15
=Sheet6!D$6
=Sheet7!D$9
=Sheet7!D$15
=Sheet8!D$6
=Sheet8!D$9
=Sheet8!D$15
=Sheet9!D$6
=Sheet9!D$9
=Sheet9!D$15
=Sheet10!D$6
=Sheet10!D$9
=Sheet10!D$15

<TBODY>
</TBODY>
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Welcome to MrExcel.

You can use eg:

=INDIRECT("'Sheet" & ROWS(A$1:A1) & "'!D6")

but the INDIRECT function is volatile so you may find issues with speed.
 
Upvote 0
Hi

Perhaps :-
Code:
=INDIRECT("Sheet"&ROW()&"!D$6")

and dragged down.

Adjust ROW() to reflect accordingly.

hth
 
Upvote 0
Hi

Perhaps :-
Code:
=INDIRECT("Sheet"&ROW()&"!D$6")

and dragged down.

Adjust ROW() to reflect accordingly.

hth

======================================X=====================================

Hello.......... thats a reason i called experts,..............................Hats off to you all......Thank you very much for the reply......

I tried it & working prefectly........

Thank you all once again.......

mrexcel forum will help me a lot in comming future.

Hemant Waghulde
INtools Designer,
Borouge, Abudhabi, UAE

Issues resolved
 
Upvote 0
Hi

Thanks for the feedback.

Andrew's will work also!

Good luck with your project.
 
Upvote 0

Forum statistics

Threads
1,215,544
Messages
6,125,441
Members
449,225
Latest member
mparcado

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