A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

adding number in next cell



 
 
Thread Tools Display Modes
  #1  
Old January 11th, 2006, 04:12 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default adding number in next cell


Every month I have to change the sales amount in my worksheet. I would
like this amount to be added automatically to the total for the year sales
amount in the next cell. Is this possible?
  #2  
Old January 11th, 2006, 04:52 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default adding number in next cell

Of course it's possible!

If you would like a suggested formula:

=SUM($A$1:A1)

Now, if this doesn't work for you, how would I know that, with all the
information that you gave us?
--

Regards,

RD
----------------------------------------------------------------------------
-------------------
Please keep all correspondence within the Group, so all may benefit !
----------------------------------------------------------------------------
-------------------

"ED" wrote in message
...

Every month I have to change the sales amount in my worksheet. I would
like this amount to be added automatically to the total for the year sales
amount in the next cell. Is this possible?


  #3  
Old January 11th, 2006, 04:52 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default adding number in next cell

right click sheet tabview codeinsert thismodify a10 to your cellSAVE

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address "$A$10" Then Exit Sub
Target.Offset(, 1) = Target.Offset(, 1) + Target
End Sub


--
Don Guillett
SalesAid Software

"ED" wrote in message
...

Every month I have to change the sales amount in my worksheet. I would
like this amount to be added automatically to the total for the year sales
amount in the next cell. Is this possible?



  #4  
Old January 11th, 2006, 09:10 PM posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: n/a
Default adding number in next cell

I guess I should explain myself a bit better.
Every month I enter the actual sales amount in Cell C13, then in Cell D13 I
enter the cummulative sales amount for the year (which I calculate manually).
The following month I enter the new actual sales amount in Cell C13 and I
add this amount to the previous cummulative sales amount from the previous
month in Cell D13. Can D13 be updated automatically with a formula every
time I enter a new amount in Cell C13?

"ED" wrote:


Every month I have to change the sales amount in my worksheet. I would
like this amount to be added automatically to the total for the year sales
amount in the next cell. Is this possible?

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
adding 0's to the left side of a constant number cell faisal alfadl General Discussion 1 November 25th, 2005 05:07 PM
Microsoft Access Limits (file size, table records, users) Mike General Discussion 4 November 4th, 2005 03:01 AM
First Number in a Cell Kelly O. Worksheet Functions 4 August 14th, 2005 03:31 PM
Number of objects thomak General Discussion 3 February 17th, 2005 11:58 AM
Adding contents of one cell to a range of cells. CLJinVA Worksheet Functions 1 February 10th, 2005 10:19 PM


All times are GMT +1. The time now is 12:53 AM.


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