Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
how do auto fill formula ='sheet 1'!D4 to sheet 2 ='sheet 2'!D4
with out change the formula maunually I want to make one sheet with the formula and add sheets and have the new sheet look at the adjacent sheet etc |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You can use the INDIRECT function to do this. Note that this will work only
with sheets that have a name of SheetN, where N is some number. It will *not* work if the sheet have other names. Enter the following formula in some cell, and change the value N in the formula to the row number in which it was first entered. =INDIRECT("'Sheet"&ROW()-N+1&"'!D4") Now, fill down for as many cells as you have sheets. -- Cordially, Chip Pearson Microsoft MVP - Excel, 10 Years Pearson Software Consulting www.cpearson.com (email on the web site) "mistewalker" wrote in message ... how do auto fill formula ='sheet 1'!D4 to sheet 2 ='sheet 2'!D4 with out change the formula maunually I want to make one sheet with the formula and add sheets and have the new sheet look at the adjacent sheet etc |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Jan 6, 8:19 pm, mistewalker
wrote: how do auto fill formula ='sheet 1'!D4 to sheet 2 ='sheet 2'!D4 with out change the formula maunually I want to make one sheet with the formula and add sheets and have the new sheet look at the adjacent sheet etc You could use the indirect function. Put this in row 1 your formula sheet and copy down: =INDIRECT("Sheet" &ROW() &"!D4") Per Erik |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() i actually have the sheets named as dates "1-7-08" as an example and i just want to be able to make a new sheet every month and have the formula change to look at the previous sheet no matter what the name make sense? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use Find & Replace to change the old sheet name to the new
sheet name. Hope this helps. Pete On Jan 6, 7:56*pm, mistewalker wrote: i actually have the sheets named as dates "1-7-08" as an example and i just want to be able to make a new sheet every month and have the formula change to look at the previous sheet no matter what the name make sense? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could use a User Defined Function to refer to the previous sheet.
Function PrevSheet(rg As Range) n = Application.Caller.Parent.Index If n = 1 Then PrevSheet = CVErr(xlErrRef) ElseIf TypeName(Sheets(n - 1)) = "Chart" Then PrevSheet = CVErr(xlErrNA) Else PrevSheet = Sheets(n - 1).Range(rg.Address).Value End If End Function =PrevSheet(D4) entered in a cell on sheet 1-7-08 will return value from D4 on sheet 1-6-08 Gord Dibben MS Excel MVP On Sun, 6 Jan 2008 11:56:00 -0800, mistewalker wrote: i actually have the sheets named as dates "1-7-08" as an example and i just want to be able to make a new sheet every month and have the formula change to look at the previous sheet no matter what the name make sense? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to eliminate E-mail "To" & "CC" boxes at top of Excel Sheet | Excel Discussion (Misc queries) | |||
Excel "Move or Copy" and "Delete" sheet functions | Excel Worksheet Functions | |||
Set sheet to "Not Print Fill Color" | Excel Discussion (Misc queries) | |||
Auto "copy and paste" individual cells from various sheets into one sheet ?? | Excel Discussion (Misc queries) | |||
How to fill in "BLANK" Cells Automactically...Large Spread Sheet | Excel Discussion (Misc queries) |