Coach
No easy way to do this without VBA but.......
Enter a number in A1 of Sheet1
Switch to Sheet2 A1 and enter =Sheet1!A1+1
Switch to Sheet3 A1 and enter =Sheet2!A1+1
Work your way across incrementing the Sheet name by 1.
If your sheets are not named as such, just substitute them as required.
VBA Code from Auk Ales to do it one whack.
Enter a number in Sheet1 A1(or your choice of cell)then run the macro.
If not using A1, change the code to your cell reference.
Sub Fill_Across_Sheets()
Dim Sh As Worksheet
Dim I As Integer
Dim ShName As String
For I = 2 To Worksheets.Count
ShName = Worksheets(I - 1).Name
Worksheets(I).Range("A1").Formula = "=" & ShName & "!A1+1"
Next
End Sub
Not being familiar with VBA and macros, see David McRitchie's site for more on
"getting started".
http://www.mvps.org/dmcritchie/excel/getstarted.htm
In the meantime..........
To create a General Module, hit ALT + F11 to open the Visual Basic Editor.
Hit CRTL + R to open Project Explorer.
Find your workbook/project and select it.
Right-click and Insert>Module. Paste the above code in there. Save the
workbook and hit ALT + Q to return to your workbook.
Run the macro by going to Tool>Macro>Macros.
Gord Dibben Excel MVP