Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a summary sheet that lists all divisions across the top (d7:q7)
It lists all GL accounts A3:A127 Also cell c3 is reserved for mth (numerically entered 1 thru 12) My source workbook contains 12 sheets (each sheet representing a month) -divisions are listed across the top (d7:q7) -G/L accounts A3:A127 -costing d3:q127 Is than any formula that could look through all the sheets based on the month number entered in cell c3 in the summary sheet. ( for example if 4 is selected it would look for the worksheet representing the 4th month Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Presume your 12 "month" source sheets are identically structured, with key
data in D7 across/down that you want extracted into your summary sheet. Take a minute to rename the 12 "month" source sheets as the numbers: 1,2,3 ... 12 Then in your summary sheet, the desired "month" will be input into C3, eg: 4 (for the 4th month) In D7: =IF($C$3="","",OFFSET(INDIRECT("'"&$C$3&"'!D7"),RO WS($1:1)-1,COLUMNS($A:A)-1)) Copy D7 across/down as far as required. Success? hit the YES below -- Max Singapore http://savefile.com/projects/236895 Downloads:27,000 Files:200 Subscribers:70 xdemechanik --- "Curtis" wrote: I have a summary sheet that lists all divisions across the top (d7:q7) It lists all GL accounts A3:A127 Also cell c3 is reserved for mth (numerically entered 1 thru 12) My source workbook contains 12 sheets (each sheet representing a month) -divisions are listed across the top (d7:q7) -G/L accounts A3:A127 -costing d3:q127 Is than any formula that could look through all the sheets based on the month number entered in cell c3 in the summary sheet. ( for example if 4 is selected it would look for the worksheet representing the 4th month Thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Where do I make reference in the formula to the source workbook say YTDTB (
note: the summary sheet resides in a different workbook than the source data) Thanks "Max" wrote: Presume your 12 "month" source sheets are identically structured, with key data in D7 across/down that you want extracted into your summary sheet. Take a minute to rename the 12 "month" source sheets as the numbers: 1,2,3 ... 12 Then in your summary sheet, the desired "month" will be input into C3, eg: 4 (for the 4th month) In D7: =IF($C$3="","",OFFSET(INDIRECT("'"&$C$3&"'!D7"),RO WS($1:1)-1,COLUMNS($A:A)-1)) Copy D7 across/down as far as required. Success? hit the YES below -- Max Singapore http://savefile.com/projects/236895 Downloads:27,000 Files:200 Subscribers:70 xdemechanik --- "Curtis" wrote: I have a summary sheet that lists all divisions across the top (d7:q7) It lists all GL accounts A3:A127 Also cell c3 is reserved for mth (numerically entered 1 thru 12) My source workbook contains 12 sheets (each sheet representing a month) -divisions are listed across the top (d7:q7) -G/L accounts A3:A127 -costing d3:q127 Is than any formula that could look through all the sheets based on the month number entered in cell c3 in the summary sheet. ( for example if 4 is selected it would look for the worksheet representing the 4th month Thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assume that the source book is Book2.xls, and this book is open at the same
time (this is a requirement for INDIRECT to work) Then in D7 in the summary sheet in your other book, you could use this instead: =IF($C$3="","",OFFSET(INDIRECT("'[Book2]"&$C$3&"'!D7"),ROWS($1:1)-1,COLUMNS($A:A)-1)) Copy D7 across/down as far as required. Success? hit the YES below -- Max Singapore http://savefile.com/projects/236895 Downloads:27,000 Files:200 Subscribers:70 xdemechanik --- "Curtis" wrote: Where do I make reference in the formula to the source workbook say YTDTB ( note: the summary sheet resides in a different workbook than the source data) |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Not working for me but it is likely me
Yes all sheets are identically structured Row 7 (columns D:AI) contain the identifiers for the divisions Col A (rows 3:277) contain the G/L # Range (D3:AI277) contain the costing data Also does the source sheet need to be open all the time or just to update the file? thanks Max "Max" wrote: Assume that the source book is Book2.xls, and this book is open at the same time (this is a requirement for INDIRECT to work) Then in D7 in the summary sheet in your other book, you could use this instead: =IF($C$3="","",OFFSET(INDIRECT("'[Book2]"&$C$3&"'!D7"),ROWS($1:1)-1,COLUMNS($A:A)-1)) Copy D7 across/down as far as required. Success? hit the YES below -- Max Singapore http://savefile.com/projects/236895 Downloads:27,000 Files:200 Subscribers:70 xdemechanik --- "Curtis" wrote: Where do I make reference in the formula to the source workbook say YTDTB ( note: the summary sheet resides in a different workbook than the source data) |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm out of further suggestions. It should have worked fine for you, provided
the source book is open at the same time (that's the requirement for INDIRECT). Start a fresh new post with full details if you are expanding your original scope as asked in this thread. -- Max Singapore http://savefile.com/projects/236895 Downloads:27,000 Files:200 Subscribers:70 xdemechanik --- |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can I use the following naming convention instead?
YTDTB01 reps mth 1 YTDTB02 reps mth 2 etc... since that is already what is in place? thanks "Curtis" wrote: Where do I make reference in the formula to the source workbook say YTDTB ( note: the summary sheet resides in a different workbook than the source data) Thanks "Max" wrote: Presume your 12 "month" source sheets are identically structured, with key data in D7 across/down that you want extracted into your summary sheet. Take a minute to rename the 12 "month" source sheets as the numbers: 1,2,3 ... 12 Then in your summary sheet, the desired "month" will be input into C3, eg: 4 (for the 4th month) In D7: =IF($C$3="","",OFFSET(INDIRECT("'"&$C$3&"'!D7"),RO WS($1:1)-1,COLUMNS($A:A)-1)) Copy D7 across/down as far as required. Success? hit the YES below -- Max Singapore http://savefile.com/projects/236895 Downloads:27,000 Files:200 Subscribers:70 xdemechanik --- "Curtis" wrote: I have a summary sheet that lists all divisions across the top (d7:q7) It lists all GL accounts A3:A127 Also cell c3 is reserved for mth (numerically entered 1 thru 12) My source workbook contains 12 sheets (each sheet representing a month) -divisions are listed across the top (d7:q7) -G/L accounts A3:A127 -costing d3:q127 Is than any formula that could look through all the sheets based on the month number entered in cell c3 in the summary sheet. ( for example if 4 is selected it would look for the worksheet representing the 4th month Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lookup question | Excel Worksheet Functions | |||
(V)LOOKUP question | Excel Worksheet Functions | |||
LOOKUP QUESTION | Excel Discussion (Misc queries) | |||
LOOKUP Question [again!] | Excel Discussion (Misc queries) | |||
Lookup Question | Excel Worksheet Functions |