Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,101
Default Can INDIRECT hold only the column value constant?

Can INDIRECT hold only the column value constant?

In a previous post I'm was trying to create a formula that will return the
value of a cell based on its column position in the spreadsheet even if I
insert another
column to the left of it.
Example
Formula in Cell C2 is: =A2+B2.
I insert a new column A.
This moves everything one column right and the formula in cell D2 is now:
=B2+C2.
What I'd like is a formula that references the row/column position in the
spreadsheet regardless of if columns are inserted or deleted so that after
inserting a new column A my formula is the value of the new information in A2
& B2. I'd like the formula that moved to D2 to still give me the value for:
=A2+B2


Thanks to Peo Sjoblom who suggested =INDIRECT("A2")+INDIRECT("B2")
This worked.

NEW QUESTION:
I would now like be able to hold the column value constant but allow the row
to adjust to the destination row so I can paste the formula down the column.

Example:
Formula in cell C2 is now =INDIRECT("A2")+INDIRECT("B2")
I insert a new column A. No problem. Formula in cell D2 is now
=INDIRECT("A2")+INDIRECT("B2").

However now Id like to revise this formula so I can copy it into cell D3
and get the value of =INDIRECT("A3")+INDIRECT("B3").
Any ideas? Thanks!

--
Cheers,
MIke
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,163
Default Can INDIRECT hold only the column value constant?

=INDIRECT("A" & ROW(B2))+INDIRECT("B" & ROW(A2))

"Mike" wrote:

Can INDIRECT hold only the column value constant?

In a previous post I'm was trying to create a formula that will return the
value of a cell based on its column position in the spreadsheet even if I
insert another
column to the left of it.
Example
Formula in Cell C2 is: =A2+B2.
I insert a new column A.
This moves everything one column right and the formula in cell D2 is now:
=B2+C2.
What I'd like is a formula that references the row/column position in the
spreadsheet regardless of if columns are inserted or deleted so that after
inserting a new column A my formula is the value of the new information in A2
& B2. I'd like the formula that moved to D2 to still give me the value for:
=A2+B2


Thanks to Peo Sjoblom who suggested =INDIRECT("A2")+INDIRECT("B2")
This worked.

NEW QUESTION:
I would now like be able to hold the column value constant but allow the row
to adjust to the destination row so I can paste the formula down the column.

Example:
Formula in cell C2 is now =INDIRECT("A2")+INDIRECT("B2")
I insert a new column A. No problem. Formula in cell D2 is now
=INDIRECT("A2")+INDIRECT("B2").

However now Id like to revise this formula so I can copy it into cell D3
and get the value of =INDIRECT("A3")+INDIRECT("B3").
Any ideas? Thanks!

--
Cheers,
MIke

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,101
Default Can INDIRECT hold only the column value constant?

Thanks. That worked.

"K Dales" wrote:

=INDIRECT("A" & ROW(B2))+INDIRECT("B" & ROW(A2))

"Mike" wrote:

Can INDIRECT hold only the column value constant?

In a previous post I'm was trying to create a formula that will return the
value of a cell based on its column position in the spreadsheet even if I
insert another
column to the left of it.
Example
Formula in Cell C2 is: =A2+B2.
I insert a new column A.
This moves everything one column right and the formula in cell D2 is now:
=B2+C2.
What I'd like is a formula that references the row/column position in the
spreadsheet regardless of if columns are inserted or deleted so that after
inserting a new column A my formula is the value of the new information in A2
& B2. I'd like the formula that moved to D2 to still give me the value for:
=A2+B2


Thanks to Peo Sjoblom who suggested =INDIRECT("A2")+INDIRECT("B2")
This worked.

NEW QUESTION:
I would now like be able to hold the column value constant but allow the row
to adjust to the destination row so I can paste the formula down the column.

Example:
Formula in cell C2 is now =INDIRECT("A2")+INDIRECT("B2")
I insert a new column A. No problem. Formula in cell D2 is now
=INDIRECT("A2")+INDIRECT("B2").

However now Id like to revise this formula so I can copy it into cell D3
and get the value of =INDIRECT("A3")+INDIRECT("B3").
Any ideas? Thanks!

--
Cheers,
MIke

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Can INDIRECT hold only the column value constant?

=INDIRECT("A" & row())+INDIRECT("B" & row())

--
Regards,
Tom Ogilvy


"Mike" wrote in message
...
Can INDIRECT hold only the column value constant?

In a previous post I'm was trying to create a formula that will return the
value of a cell based on its column position in the spreadsheet even if I
insert another
column to the left of it.
Example
Formula in Cell C2 is: =A2+B2.
I insert a new column A.
This moves everything one column right and the formula in cell D2 is

now:
=B2+C2.
What I'd like is a formula that references the row/column position in

the
spreadsheet regardless of if columns are inserted or deleted so that

after
inserting a new column A my formula is the value of the new information

in A2
& B2. I'd like the formula that moved to D2 to still give me the value

for:
=A2+B2


Thanks to Peo Sjoblom who suggested =INDIRECT("A2")+INDIRECT("B2")
This worked.

NEW QUESTION:
I would now like be able to hold the column value constant but allow the

row
to adjust to the destination row so I can paste the formula down the

column.

Example:
Formula in cell C2 is now =INDIRECT("A2")+INDIRECT("B2")
I insert a new column A. No problem. Formula in cell D2 is now
=INDIRECT("A2")+INDIRECT("B2").

However now I'd like to revise this formula so I can copy it into cell D3
and get the value of =INDIRECT("A3")+INDIRECT("B3").
Any ideas? Thanks!

--
Cheers,
MIke



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Can INDIRECT hold only the column value constant?

row(A2) is verbose if the formula will be entered in the second row. row()
will suffice.

--
Regards,
Tom Ogilvy

"Mike" wrote in message
...
Thanks. That worked.

"K Dales" wrote:

=INDIRECT("A" & ROW(B2))+INDIRECT("B" & ROW(A2))

"Mike" wrote:

Can INDIRECT hold only the column value constant?

In a previous post I'm was trying to create a formula that will return

the
value of a cell based on its column position in the spreadsheet even

if I
insert another
column to the left of it.
Example
Formula in Cell C2 is: =A2+B2.
I insert a new column A.
This moves everything one column right and the formula in cell D2 is

now:
=B2+C2.
What I'd like is a formula that references the row/column position

in the
spreadsheet regardless of if columns are inserted or deleted so that

after
inserting a new column A my formula is the value of the new

information in A2
& B2. I'd like the formula that moved to D2 to still give me the

value for:
=A2+B2

Thanks to Peo Sjoblom who suggested =INDIRECT("A2")+INDIRECT("B2")
This worked.

NEW QUESTION:
I would now like be able to hold the column value constant but allow

the row
to adjust to the destination row so I can paste the formula down the

column.

Example:
Formula in cell C2 is now =INDIRECT("A2")+INDIRECT("B2")
I insert a new column A. No problem. Formula in cell D2 is now
=INDIRECT("A2")+INDIRECT("B2").

However now I'd like to revise this formula so I can copy it into cell

D3
and get the value of =INDIRECT("A3")+INDIRECT("B3").
Any ideas? Thanks!

--
Cheers,
MIke



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
How can I change the tab but keep the row and column constant when MG Excel Worksheet Functions 25 June 20th 07 01:51 PM
Keeping the column constant in a formula Arithmetic functions with embedded text[_2_] Excel Discussion (Misc queries) 4 June 11th 07 03:31 PM
ARRAY?, CONSTANT?, INDIRECT?, CONSTITUATE? SayWhatAuto Excel Worksheet Functions 18 January 6th 07 07:16 PM
Multiplying a column of data by a constant zach Excel Discussion (Misc queries) 3 October 19th 06 07:40 PM
making a column of formuls constant Jake Excel Worksheet Functions 2 November 2nd 04 01:45 AM


All times are GMT +1. The time now is 08:27 PM.

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

About Us

"It's about Microsoft Excel"