Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Amanda Redmond-Neal
 
Posts: n/a
Default translate function into english, anyone?

hi. i just inherited a goliath workbook with four interconnected
spreadsheets that my old boss had used to manage certain aspects of our
company's contract accounting.
one of the functions that he created reads
"=+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)". this results in a number that is
important to my task at hand, so i need to know where it came from. knowing
that i am not particularly excel-savvy, can someone tell me what this
expression means? fyi, "detail" is the name of another page of the workbook
from the one where this text is found.
in case it matters, i did look at cell F1 of the "detail" page, but it is
simply a date, and not a related one at that. i wish i knew what the dollar
signs mean.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bpeltzer
 
Posts: n/a
Default translate function into english, anyone?

In words: start at Detail!$F$1. Move down D22-1 rows. Move over $F$11-1
columns. (You could delete the leading + and the ,1,1 at the end).

"Amanda Redmond-Neal" wrote:

hi. i just inherited a goliath workbook with four interconnected
spreadsheets that my old boss had used to manage certain aspects of our
company's contract accounting.
one of the functions that he created reads
"=+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)". this results in a number that is
important to my task at hand, so i need to know where it came from. knowing
that i am not particularly excel-savvy, can someone tell me what this
expression means? fyi, "detail" is the name of another page of the workbook
from the one where this text is found.
in case it matters, i did look at cell F1 of the "detail" page, but it is
simply a date, and not a related one at that. i wish i knew what the dollar
signs mean.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Coderre
 
Posts: n/a
Default translate function into english, anyone?

Using =+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)
That function initially points to cell F1 on the Detail sheet
Then it moves up or down based on the value in Cell D22 less 1 of the sheet
the formula is on.
Then it moves left or right based on the value in Cell F11 less 1 of the
sheet the formula is on and selects an area 1-cell wide by 1-cell high.

Example:
D22 contains 10
F11 contains 3

The formula initially points to Detail!$F$1
Moves down 9 (10-1) to Detail!$F$10
Then moves right 2 (3-1) to end up at Detail!H10


Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"Amanda Redmond-Neal" wrote:

hi. i just inherited a goliath workbook with four interconnected
spreadsheets that my old boss had used to manage certain aspects of our
company's contract accounting.
one of the functions that he created reads
"=+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)". this results in a number that is
important to my task at hand, so i need to know where it came from. knowing
that i am not particularly excel-savvy, can someone tell me what this
expression means? fyi, "detail" is the name of another page of the workbook
from the one where this text is found.
in case it matters, i did look at cell F1 of the "detail" page, but it is
simply a date, and not a related one at that. i wish i knew what the dollar
signs mean.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Amanda Redmond-Neal
 
Posts: n/a
Default translate function into english, anyone?

it does help to some degree. thanks ron and also bpeltzer, who also replied.
but one thing that still escapes me is the meaning of the dollar signs.
surely $F$1 is different from F1, right?

"Ron Coderre" wrote:

Using =+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)
That function initially points to cell F1 on the Detail sheet
Then it moves up or down based on the value in Cell D22 less 1 of the sheet
the formula is on.
Then it moves left or right based on the value in Cell F11 less 1 of the
sheet the formula is on and selects an area 1-cell wide by 1-cell high.

Example:
D22 contains 10
F11 contains 3

The formula initially points to Detail!$F$1
Moves down 9 (10-1) to Detail!$F$10
Then moves right 2 (3-1) to end up at Detail!H10


Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"Amanda Redmond-Neal" wrote:

hi. i just inherited a goliath workbook with four interconnected
spreadsheets that my old boss had used to manage certain aspects of our
company's contract accounting.
one of the functions that he created reads
"=+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)". this results in a number that is
important to my task at hand, so i need to know where it came from. knowing
that i am not particularly excel-savvy, can someone tell me what this
expression means? fyi, "detail" is the name of another page of the workbook
from the one where this text is found.
in case it matters, i did look at cell F1 of the "detail" page, but it is
simply a date, and not a related one at that. i wish i knew what the dollar
signs mean.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bpeltzer
 
Posts: n/a
Default translate function into english, anyone?

F1 and $F$1 both refer to the same cell. But F1 is a relative reference and
$F$1 is absolute. The difference shows if you start to copy the formula and
paste it into other cells. If you paste one cell right, F1 will advance to
G1. Once cell down and F1 becomes F2. In either case, $F$1 will remain
$F$1. (FYI, there are also mixed references, such as $F1 and F$1; whichever
dimension has the $ in front is fixed as the formulas are copied and pasted
to different locations).
--Bruce

"Amanda Redmond-Neal" wrote:

it does help to some degree. thanks ron and also bpeltzer, who also replied.
but one thing that still escapes me is the meaning of the dollar signs.
surely $F$1 is different from F1, right?

"Ron Coderre" wrote:

Using =+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)
That function initially points to cell F1 on the Detail sheet
Then it moves up or down based on the value in Cell D22 less 1 of the sheet
the formula is on.
Then it moves left or right based on the value in Cell F11 less 1 of the
sheet the formula is on and selects an area 1-cell wide by 1-cell high.

Example:
D22 contains 10
F11 contains 3

The formula initially points to Detail!$F$1
Moves down 9 (10-1) to Detail!$F$10
Then moves right 2 (3-1) to end up at Detail!H10


Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"Amanda Redmond-Neal" wrote:

hi. i just inherited a goliath workbook with four interconnected
spreadsheets that my old boss had used to manage certain aspects of our
company's contract accounting.
one of the functions that he created reads
"=+OFFSET(Detail!$F$1,D22-1,$F$11-1,1,1)". this results in a number that is
important to my task at hand, so i need to know where it came from. knowing
that i am not particularly excel-savvy, can someone tell me what this
expression means? fyi, "detail" is the name of another page of the workbook
from the one where this text is found.
in case it matters, i did look at cell F1 of the "detail" page, but it is
simply a date, and not a related one at that. i wish i knew what the dollar
signs mean.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
UDF help please Adam Kroger Excel Discussion (Misc queries) 3 December 17th 05 07:21 PM
Automatically up date time in a cell Mark Excel Discussion (Misc queries) 5 May 12th 05 12:26 AM
opening up an english excel sheet onto a french verions - problems with edate function [email protected] Excel Discussion (Misc queries) 0 February 20th 05 01:37 PM
use bahttext function in english language rabih Excel Discussion (Misc queries) 2 January 4th 05 07:47 PM
HOW CAN I GET OFFICE 2003 EXCEL BASIC TO NEST FUNCTIONS LIKE EXCE. Robert AS Excel Worksheet Functions 4 December 2nd 04 10:49 AM


All times are GMT +1. The time now is 03:51 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"