Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default How do I stop totals showing from a copied formula?

I've created a simple spreadsheet for a friend on which to do her home
accounts. I want to make it as automated as possible while keeping it simple
to add entries.

The columns on which calculations will be based are headed:

C D E
Withdrawal Paid In Balance

Entries into the Withdrawal column will be made as a negative number. I've
created a formula whereby a new balance is created by adding the values in C
and D to the balance in column E from the previous row. e.g. =(E5+C6+D6).

My problem is this. So far I have data and values inserted in rows 4 to 11
and have copied the formula down the cells in column E. Once I copy it
beyond the rows with information, it continues to show the same value as
that in cell E11. Is there anyway in which these values can be hidden until
they are the result of calculations from each row? Sorry if that's not
explained very well. It's difficult to do it succintly.

Any help would be appreciated. Thank you

Gillian


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default How do I stop totals showing from a copied formula?

One way:

=IF(AND(C6="",D6=""),"",C6+D6+E5)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Gossipsfrolick" wrote in message
...
I've created a simple spreadsheet for a friend on which to do her home
accounts. I want to make it as automated as possible while keeping it

simple
to add entries.

The columns on which calculations will be based are headed:

C D E
Withdrawal Paid In Balance

Entries into the Withdrawal column will be made as a negative number. I've
created a formula whereby a new balance is created by adding the values in

C
and D to the balance in column E from the previous row. e.g. =(E5+C6+D6).

My problem is this. So far I have data and values inserted in rows 4 to 11
and have copied the formula down the cells in column E. Once I copy it
beyond the rows with information, it continues to show the same value as
that in cell E11. Is there anyway in which these values can be hidden

until
they are the result of calculations from each row? Sorry if that's not
explained very well. It's difficult to do it succintly.

Any help would be appreciated. Thank you

Gillian



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default How do I stop totals showing from a copied formula?

Thank you. It worked!

Gillian

"Ragdyer" wrote in message
...
One way:

=IF(AND(C6="",D6=""),"",C6+D6+E5)

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Gossipsfrolick" wrote in message
...
I've created a simple spreadsheet for a friend on which to do her home
accounts. I want to make it as automated as possible while keeping it

simple
to add entries.

The columns on which calculations will be based are headed:

C D E
Withdrawal Paid In Balance

Entries into the Withdrawal column will be made as a negative number.
I've
created a formula whereby a new balance is created by adding the values
in

C
and D to the balance in column E from the previous row. e.g. =(E5+C6+D6).

My problem is this. So far I have data and values inserted in rows 4 to
11
and have copied the formula down the cells in column E. Once I copy it
beyond the rows with information, it continues to show the same value as
that in cell E11. Is there anyway in which these values can be hidden

until
they are the result of calculations from each row? Sorry if that's not
explained very well. It's difficult to do it succintly.

Any help would be appreciated. Thank you

Gillian





  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default How do I stop totals showing from a copied formula?

You're welcome ... And thank you for the feed-back.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Gossipsfrolick" wrote in message
...
Thank you. It worked!

Gillian

"Ragdyer" wrote in message
...
One way:

=IF(AND(C6="",D6=""),"",C6+D6+E5)

--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"Gossipsfrolick" wrote in message
...
I've created a simple spreadsheet for a friend on which to do her home
accounts. I want to make it as automated as possible while keeping it

simple
to add entries.

The columns on which calculations will be based are headed:

C D E
Withdrawal Paid In Balance

Entries into the Withdrawal column will be made as a negative number.
I've
created a formula whereby a new balance is created by adding the values
in

C
and D to the balance in column E from the previous row. e.g.

=(E5+C6+D6).

My problem is this. So far I have data and values inserted in rows 4 to
11
and have copied the formula down the cells in column E. Once I copy it
beyond the rows with information, it continues to show the same value

as
that in cell E11. Is there anyway in which these values can be hidden

until
they are the result of calculations from each row? Sorry if that's not
explained very well. It's difficult to do it succintly.

Any help would be appreciated. Thank you

Gillian






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 524
Default How do I stop totals showing from a copied formula?

Mon, 26 Mar 2007 00:52:10 +0100 from Gossipsfrolick
:
Entries into the Withdrawal column will be made as a negative number. I've
created a formula whereby a new balance is created by adding the values in C
and D to the balance in column E from the previous row. e.g. =(E5+C6+D6).


That seems counter-intuitive. Sooner or later, I bet you dollars to
donuts, your friend will forget to enter a minus sign. Why not have
withdrawals as positive (as they would be written in a checkbook) and
use
=E5-C6+D6
(By the way, there was no need for parentheses.)

My problem is this. So far I have data and values inserted in rows 4 to 11
and have copied the formula down the cells in column E. Once I copy it
beyond the rows with information, it continues to show the same value as
that in cell E11. Is there anyway in which these values can be hidden until
they are the result of calculations from each row?


In E6, put
=if(C6+D6=0,"",E5-C6+D6)


--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
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
stop showing changed text in formula bar on different level ginger Excel Discussion (Misc queries) 0 August 15th 06 03:17 PM
How to Stop Reformat When Cells Are Copied Strong Eagle Excel Discussion (Misc queries) 1 April 30th 06 02:42 AM
How do I stop an Excel file from being copied John Driscoll Excel Discussion (Misc queries) 6 December 15th 05 06:35 PM
Stop % showing in outcome of formula Beginner Excel Worksheet Functions 2 January 10th 05 08:09 PM
Showing totals from two columns Kristin Excel Discussion (Misc queries) 3 January 6th 05 07:57 PM


All times are GMT +1. The time now is 09:40 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"