Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have timesheet data in one sheet with 10 rows for each week (day
detail + totals). I have a 2nd sheet that pulls totals from the first so I can generate an analysis of my time and earnings. The formula I am using on rows of my analysis is: B7 =Timesheet!$F$11 B8 ==Timesheet!$F$21 B9 ==Timesheet!$F$31 etc... Is there a way to create a formula so that I can say for B10 it is the location referenced in B9 + 10 rows? It would be nice to have a formula so I don't have to hard code each cell. I have spent hours trying lots of things using the Excel Help, but I'm a bit of a novice when it comes to formulas. If anyone can help I would appreciate it. Thanks in advance. Tony |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This worked for me:
=INDIRECT("'timesheet'!f" & 10 * ROW(A1) + 1) "poddys" wrote: I have timesheet data in one sheet with 10 rows for each week (day detail + totals). I have a 2nd sheet that pulls totals from the first so I can generate an analysis of my time and earnings. The formula I am using on rows of my analysis is: B7 =Timesheet!$F$11 B8 ==Timesheet!$F$21 B9 ==Timesheet!$F$31 etc... Is there a way to create a formula so that I can say for B10 it is the location referenced in B9 + 10 rows? It would be nice to have a formula so I don't have to hard code each cell. I have spent hours trying lots of things using the Excel Help, but I'm a bit of a novice when it comes to formulas. If anyone can help I would appreciate it. Thanks in advance. Tony |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Well, the OFFSET() function is what you need. In B7 put
=OFFSET(Timesheet!$F$11,10*(ROW(A1)-1),0) & copy it down "poddys" wrote: I have timesheet data in one sheet with 10 rows for each week (day detail + totals). I have a 2nd sheet that pulls totals from the first so I can generate an analysis of my time and earnings. The formula I am using on rows of my analysis is: B7 =Timesheet!$F$11 B8 ==Timesheet!$F$21 B9 ==Timesheet!$F$31 etc... Is there a way to create a formula so that I can say for B10 it is the location referenced in B9 + 10 rows? It would be nice to have a formula so I don't have to hard code each cell. I have spent hours trying lots of things using the Excel Help, but I'm a bit of a novice when it comes to formulas. If anyone can help I would appreciate it. Thanks in advance. Tony |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Duke - that works perfectly.
I just couldn't figure this out without help, but now I have already sorted out other cells using the same. Appreciate your help. Tony |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Urgent date/scheduling calc needed | Excel Worksheet Functions | |||
automatic offset cell location when there is a value in a selected cell. | Excel Worksheet Functions | |||
Problem with formulas changing cell reference | Excel Discussion (Misc queries) | |||
Offset Function works in cell, not in named range | Excel Worksheet Functions | |||
Cell Reference Math | Excel Worksheet Functions |