Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 37
Default relative formula not changing

I have a formula that is outside of a list (sorry... TABLE in 2007). It is
set to total a column which spans the rows of two separate lists. The
formula range is not fixed, but the row # is not increasing when either of
the the lists auto-add rows. It always worked with the old version. Any
help?

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default relative formula not changing

Is your sheet set for manual calculation? Press F9 to see if this
recalculates, and if it does click on Tools | Options | Calculation
tab and click on Automatic.

Perhaps the format of the cell has been set to Text - click on Format
| Cells | Number tab to check, and set it to General. Double-click the
cell as if to edit it, then press <enter to bring about the change in
format.

Hope this helps.

Pete

On Nov 2, 9:36 pm, KelliInCali
wrote:
I have a formula that is outside of a list (sorry... TABLE in 2007). It is
set to total a column which spans the rows of two separate lists. The
formula range is not fixed, but the row # is not increasing when either of
the the lists auto-add rows. It always worked with the old version. Any
help?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 37
Default relative formula not changing

Thanks for the reply Pete. Yes, calc is set to auto. The formula is
operating, but it is not accounting for the additional rows when either of
the tables above it auto-inserts a new row. It is behaving as though it's
range is absolute when it's not. -kelli



"Pete_UK" wrote:

Is your sheet set for manual calculation? Press F9 to see if this
recalculates, and if it does click on Tools | Options | Calculation
tab and click on Automatic.

Perhaps the format of the cell has been set to Text - click on Format
| Cells | Number tab to check, and set it to General. Double-click the
cell as if to edit it, then press <enter to bring about the change in
format.

Hope this helps.

Pete

On Nov 2, 9:36 pm, KelliInCali
wrote:
I have a formula that is outside of a list (sorry... TABLE in 2007). It is
set to total a column which spans the rows of two separate lists. The
formula range is not fixed, but the row # is not increasing when either of
the the lists auto-add rows. It always worked with the old version. Any
help?




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 364
Default relative formula not changing

I don't have Excel 2007, but a list is just a range of cells - let's say
A1:A9. Does your formula just refer to A1:A9 - that is, the exact rows of
your list? The point is that 'adding' a row (in my example, row 10) will not
change the range referred to, as this is outside the list.

What you would need to do is to alter the range in your formula to include
an extra row. So, for data in A1:A9 your formula would refer to A1:A10.
Then, when a new row is added (row 10), it will be within the table, so the
range will adjust to be A1:A11.


"KelliInCali" wrote in message
...
Thanks for the reply Pete. Yes, calc is set to auto. The formula is
operating, but it is not accounting for the additional rows when either of
the tables above it auto-inserts a new row. It is behaving as though it's
range is absolute when it's not. -kelli



"Pete_UK" wrote:

Is your sheet set for manual calculation? Press F9 to see if this
recalculates, and if it does click on Tools | Options | Calculation
tab and click on Automatic.

Perhaps the format of the cell has been set to Text - click on Format
| Cells | Number tab to check, and set it to General. Double-click the
cell as if to edit it, then press <enter to bring about the change in
format.

Hope this helps.

Pete

On Nov 2, 9:36 pm, KelliInCali
wrote:
I have a formula that is outside of a list (sorry... TABLE in 2007).
It is
set to total a column which spans the rows of two separate lists. The
formula range is not fixed, but the row # is not increasing when either
of
the the lists auto-add rows. It always worked with the old version.
Any
help?






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default relative formula not changing

If you just add a row at the end of a table then Excel will not adjust
its formulas - the trick is to Insert a row within the table.

Alternatively, you might like to use dynamic ranges, which
automatically adjust to suit the amount of data you have. If you want
to take this route, here's a couple of references you might like to
study:

http://www.contextures.com/xlNames01.html#Dynamic

http://www.cpearson.com/excel/named.htm#Dynamic

Hope this helps.

Pete

On Nov 5, 4:33 pm, KelliInCali
wrote:
Thanks for the reply Pete. Yes, calc is set to auto. The formula is
operating, but it is not accounting for the additional rows when either of
the tables above it auto-inserts a new row. It is behaving as though it's
range is absolute when it's not. -kelli



"Pete_UK" wrote:
Is your sheet set for manual calculation? Press F9 to see if this
recalculates, and if it does click on Tools | Options | Calculation
tab and click on Automatic.


Perhaps the format of the cell has been set to Text - click on Format
| Cells | Number tab to check, and set it to General. Double-click the
cell as if to edit it, then press <enter to bring about the change in
format.


Hope this helps.


Pete


On Nov 2, 9:36 pm, KelliInCali
wrote:
I have a formula that is outside of a list (sorry... TABLE in 2007). It is
set to total a column which spans the rows of two separate lists. The
formula range is not fixed, but the row # is not increasing when either of
the the lists auto-add rows. It always worked with the old version. Any
help?- Hide quoted text -


- Show quoted text -





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default relative formula not changing

=SUM(A1:INDEX(A:A,ROW()-1))

As you insert rows above this formula it will expand to include those rows.

Or you could enter the formula in B1 and achieve the same thing.


Gord Dibben MS Excel MVP


On Mon, 5 Nov 2007 08:33:06 -0800, KelliInCali
wrote:

Thanks for the reply Pete. Yes, calc is set to auto. The formula is
operating, but it is not accounting for the additional rows when either of
the tables above it auto-inserts a new row. It is behaving as though it's
range is absolute when it's not. -kelli



"Pete_UK" wrote:

Is your sheet set for manual calculation? Press F9 to see if this
recalculates, and if it does click on Tools | Options | Calculation
tab and click on Automatic.

Perhaps the format of the cell has been set to Text - click on Format
| Cells | Number tab to check, and set it to General. Double-click the
cell as if to edit it, then press <enter to bring about the change in
format.

Hope this helps.

Pete

On Nov 2, 9:36 pm, KelliInCali
wrote:
I have a formula that is outside of a list (sorry... TABLE in 2007). It is
set to total a column which spans the rows of two separate lists. The
formula range is not fixed, but the row # is not increasing when either of
the the lists auto-add rows. It always worked with the old version. Any
help?





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
Changing Cells from Relative to Absolute Reference PZ Excel Discussion (Misc queries) 16 April 11th 07 08:22 PM
Changing formulas from relative to absolute Axel Excel Discussion (Misc queries) 5 June 14th 06 09:13 PM
Changing relative to absolute for a column John K Excel Worksheet Functions 6 May 17th 06 02:51 AM
changing relative to absolute Paul Excel Discussion (Misc queries) 2 April 20th 06 08:09 PM
Formula - relative or absolute ref, keeps changing Hoib New Users to Excel 5 July 23rd 05 01:21 AM


All times are GMT +1. The time now is 05:35 PM.

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"