Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a cell in a worksheet = B1 of a different worksheet. What should I do
if I want this cell to ALWAYS show what is in B1 regardless of any new rows added or anything else. so its not referencing the value of the cell but rather the 'geographical' location... Thanks for any help |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=indirect("B1")
-- HTH... Jim Thomlinson "Wombat" wrote: I have a cell in a worksheet = B1 of a different worksheet. What should I do if I want this cell to ALWAYS show what is in B1 regardless of any new rows added or anything else. so its not referencing the value of the cell but rather the 'geographical' location... Thanks for any help |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ok, what if I want to have lots of cells doing that and don't want to write
in the cell number everytime. Is there a way to copy this from one cell to the other? "Jim Thomlinson" wrote: =indirect("B1") -- HTH... Jim Thomlinson "Wombat" wrote: I have a cell in a worksheet = B1 of a different worksheet. What should I do if I want this cell to ALWAYS show what is in B1 regardless of any new rows added or anything else. so its not referencing the value of the cell but rather the 'geographical' location... Thanks for any help |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Indirect evaluates a text address and returns the cell value from that
address. Text however does not increment as you drag. There are not a lot of options here. =indirect("B" & row()) where row returns the row number of the row number of the cell it is in. Note that these functions are volatile and I do not recommend having thousands of these types of formulas as the performance of the spreadsheet will start to drop off. -- HTH... Jim Thomlinson "Wombat" wrote: Ok, what if I want to have lots of cells doing that and don't want to write in the cell number everytime. Is there a way to copy this from one cell to the other? "Jim Thomlinson" wrote: =indirect("B1") -- HTH... Jim Thomlinson "Wombat" wrote: I have a cell in a worksheet = B1 of a different worksheet. What should I do if I want this cell to ALWAYS show what is in B1 regardless of any new rows added or anything else. so its not referencing the value of the cell but rather the 'geographical' location... Thanks for any help |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I understood your request and assuming your formula goes into cell H1 -
type: =INDIRECT(ADDRESS(ROW(),COLUMN()-6)) which will refer to call B1 If you'll copy it 2 cells down & 3 cells right the formula will refer to cell E3 Micky "Wombat" wrote: Ok, what if I want to have lots of cells doing that and don't want to write in the cell number everytime. Is there a way to copy this from one cell to the other? "Jim Thomlinson" wrote: =indirect("B1") -- HTH... Jim Thomlinson "Wombat" wrote: I have a cell in a worksheet = B1 of a different worksheet. What should I do if I want this cell to ALWAYS show what is in B1 regardless of any new rows added or anything else. so its not referencing the value of the cell but rather the 'geographical' location... Thanks for any help |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=INDIRECT("B"&ROW(A1)) and copy down.
-- David Biddulph "Wombat" wrote in message ... Ok, what if I want to have lots of cells doing that and don't want to write in the cell number everytime. Is there a way to copy this from one cell to the other? "Jim Thomlinson" wrote: =indirect("B1") -- HTH... Jim Thomlinson "Wombat" wrote: I have a cell in a worksheet = B1 of a different worksheet. What should I do if I want this cell to ALWAYS show what is in B1 regardless of any new rows added or anything else. so its not referencing the value of the cell but rather the 'geographical' location... Thanks for any help |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Okey dokes... I'll see what I can put together. Thanks for the help!
"מיכ×ל (מיקי) ×בידן" wrote: If I understood your request and assuming your formula goes into cell H1 - type: =INDIRECT(ADDRESS(ROW(),COLUMN()-6)) which will refer to call B1 If you'll copy it 2 cells down & 3 cells right the formula will refer to cell E3 Micky "Wombat" wrote: Ok, what if I want to have lots of cells doing that and don't want to write in the cell number everytime. Is there a way to copy this from one cell to the other? "Jim Thomlinson" wrote: =indirect("B1") -- HTH... Jim Thomlinson "Wombat" wrote: I have a cell in a worksheet = B1 of a different worksheet. What should I do if I want this cell to ALWAYS show what is in B1 regardless of any new rows added or anything else. so its not referencing the value of the cell but rather the 'geographical' location... Thanks for any help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell referencing | Excel Discussion (Misc queries) | |||
Referencing Cell Next To Today's Date Cell | Excel Discussion (Misc queries) | |||
cell referencing | Excel Worksheet Functions | |||
Cell Referencing | Excel Worksheet Functions | |||
Cell Referencing? | Excel Worksheet Functions |