Hi Sam,
You wrote:
"Like I stated in the initial post is like this:
The formula shows INDIRECT ($B$54 &"::E3") ---This should refer to the month of March sheet
The cell $B$54 = MARCH-BALANCE -- This is the table name in the sheet of March (or April or the next month as the sheet progresses it will change at the $B$54 change the month and so the INDIRECT cell "I __" )"
I take this to mean:
- Your document has a Sheet two Sheets for each month of the year. Each sheet is named with: the name of its month, the last two digits of the year, and either "EXP" or "SUMM", separated by hyphens.
- One of the two sheets for each month contains a table named "month-BALANCE", where "month" is the name of the month that is part of the Sheet name of the sheet containing that table.
- You want to copy the value in cell E3 of the table named MARCH-BALANCE to an unspecified cell on and unspecified table on one of the April sheets.
- (from your initial post) in the cell below the one receiving the value from MARCH-BALANCE::E3, you want to get a copy of the value in MARCH-BALANCE::E4, and in the cell below that one, a copy of the value in MARCH-BALANCE::E5.
- Cell B54 on the (April) table that is to receive the copy contains the text "MARCH-BALANCE"
Cell B54 on the (May) table that is to receive the copy contains the text "APRIL-BALANCE"
Cell B54 on the (June) table that is to receive the copy contains the text "MAY-BALANCE"
etc.
This is pretty much exactly what my example does.
The smaller table represents the 'april' table that is to receive the values from column E of the table MARCH BALANCE (I omitted the hyphen, which will need to be included in the data in B54 on your table to match your march table name).
B1 represents your B54.
K7 represents the cell that is to get the data from E3 of MARCH BALANCE.
MARCH BALANCE represents your MARCH-BALANCE table, with only the target cells (E3 and below) filled in.
"I tried the ROW function that you recommended but that didn't work when is a reference sheet."
Clarify, please.
What was you actual formula?
In what way did ROW() (or the formula) "not work"?
What did the user do? What response did the computer make?
"that didn't work when is a reference sheet."
What does this mean?
"I typed INDIRECT(B$54,&"::I"&ROW()-59) but is calling the local sheet (APRIL) when what I need is to go back to MARCH in this case.
The formula above will create a cell reference to contentofB54::In where contentofB54 is the text in cell B54, and n is the result of the number of the row containing the formula minus 59.
If B54 contains "MARCH-BALANCE" and the formula is in a cell in row 62, the cell reference constructed will be to
MARCH-BALANCE::I3 and the cell should display 81.39, the value in I3 of MARCH-BALANCE, as shown in the screen shot in your second post in this thread.
"I also tried to type directly at the cell and start typing with apostrophes but it didn't let me continue when I tried the colon
I don't know why?"
Were you typing "in the cell" or had you typed = to open the Formula Editor, then typed in the Formula Editor.
What do you mean by "started typing with apostrophes"?
Typing a single apostrophe as the first character of an entry in a cell signals Numbers "what follows is to be formatted as text".
One useful place for this is US ZiP codes (postal codes), several of which start with zeros.
Entering 01527 is recognized as a number and displayed as 1527
Entering '01527 is recognized as text and displayed as 01527
In formulas, quotation marks are used to mark the start and end of "literal strings" (text values).
Regards,
Barry