ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Sum of 2 or 3 values in one cell, displayed in other cell (https://www.excelbanter.com/excel-worksheet-functions/216450-sum-2-3-values-one-cell-displayed-other-cell.html)

csoumy

Sum of 2 or 3 values in one cell, displayed in other cell
 

This is my problem

I have only two cells in the excel say A1 and B1.

I want the sum of the values in the cell A1 to be displayed in B1.

For Eg: I enter 10 for the first time in the cell A1, I want 10 to be
displayed in B1.
The second time I enter 20 in the cell A1, I want 30(20+10) to
be displayed in B1.
The third time I enter 30 in the cell A1, I want 60(20+10+30)
to be displayed in B1.

Thus 30 should be displayed in the cell A1 and 60 should be displayed in the
cell B1.

i.e the latest value entered should be displayed in A1 and the cumulative
sum of the values entered should be displayed in B1.

Please help me out!


Jarek Kujawa[_2_]

Sum of 2 or 3 values in one cell, displayed in other cell
 
excel 2003
Tools-Options-Calculation tab-check Iteration, set it to 1

then in B1 insert formula:
=A1+B1




On 14 Sty, 12:17, csoumy wrote:
This is my problem

*I have only two cells in the excel say A1 and B1.

I want the sum of the values in the cell A1 to *be displayed in B1.

For Eg: I enter 10 for the first time in the cell A1, I want 10 to be
displayed in B1.
* * * * * * *The second time I enter 20 in the cell A1, I want 30(20+10) to
be displayed in B1.
* * * * * * *The third time I enter 30 in the cell A1, I want 60(20+10+30)
to be displayed in B1.

Thus 30 should be displayed in the cell A1 and 60 should be displayed in the
cell B1.

i.e the latest value entered should be displayed in A1 and the cumulative
sum of the values entered should be displayed in B1.

Please help me out!



Gord Dibben

Sum of 2 or 3 values in one cell, displayed in other cell
 
Jarek's method works.

But you will have no way of correcting any mistake in data entry except
entering a negative of the any number you entered.

There is no "paper trail" left behind for error-checking.

An Excel sheet has lots of cells. Why stick use just two of them?


Gord Dibben MS Excel MVP

On Wed, 14 Jan 2009 03:17:01 -0800, csoumy
wrote:


This is my problem

I have only two cells in the excel say A1 and B1.

I want the sum of the values in the cell A1 to be displayed in B1.

For Eg: I enter 10 for the first time in the cell A1, I want 10 to be
displayed in B1.
The second time I enter 20 in the cell A1, I want 30(20+10) to
be displayed in B1.
The third time I enter 30 in the cell A1, I want 60(20+10+30)
to be displayed in B1.

Thus 30 should be displayed in the cell A1 and 60 should be displayed in the
cell B1.

i.e the latest value entered should be displayed in A1 and the cumulative
sum of the values entered should be displayed in B1.

Please help me out!



Jarek Kujawa[_2_]

Sum of 2 or 3 values in one cell, displayed in other cell
 
thanks Gord
of course it would be better to find a more versatile method, but:

1. the OP wrote "I have only two cells in the excel say A1 and B1"
2. I couldn't think of any other solution

;-)))

On 15 Sty, 00:06, Gord Dibben <gorddibbATshawDOTca wrote:
Jarek's method works.

But you will have no way of correcting any mistake in data entry except
entering a negative of the any number you entered.

There is no "paper trail" left behind for error-checking.

An Excel sheet has lots of cells. *Why stick use just two of them?

Gord Dibben *MS Excel MVP

On Wed, 14 Jan 2009 03:17:01 -0800, csoumy



wrote:

This is my problem


I have only two cells in the excel say A1 and B1.


I want the sum of the values in the cell A1 to *be displayed in B1.


For Eg: I enter 10 for the first time in the cell A1, I want 10 to be
displayed in B1.
* * * * * * The second time I enter 20 in the cell A1, I want 30(20+10) to
be displayed in B1.
* * * * * * The third time I enter 30 in the cell A1, I want 60(20+10+30)
to be displayed in B1.


Thus 30 should be displayed in the cell A1 and 60 should be displayed in the
cell B1.


i.e the latest value entered should be displayed in A1 and the cumulative
sum of the values entered should be displayed in B1.


Please help me out!- Ukryj cytowany tekst -


- Pokaż cytowany tekst -



Gord Dibben

Sum of 2 or 3 values in one cell, displayed in other cell
 
Your solution was OK and answered OP's question.

I just tacked on the caveat about no paper trail.

One method of having an accumulator cell with a paper trail is to keep track
of entries in a Comment in the input cell.

Code from Jack Sons and Tim Williams........................

Private Sub Worksheet_Change(ByVal Target As Range)
Dim cmt As Comment

If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub
On Error Resume Next
Set cmt = Target.Comment
On Error GoTo 0

If cmt Is Nothing Then
Set cmt = Target.AddComment(Text:="0")
End If

If cmt.Text < "" Then
cmt.Text CStr(Target.Value & ", " & cmt.Text)
End If

End Sub


Gord



On Wed, 14 Jan 2009 23:25:41 -0800 (PST), Jarek Kujawa
wrote:

thanks Gord
of course it would be better to find a more versatile method, but:

1. the OP wrote "I have only two cells in the excel say A1 and B1"
2. I couldn't think of any other solution

;-)))

On 15 Sty, 00:06, Gord Dibben <gorddibbATshawDOTca wrote:
Jarek's method works.

But you will have no way of correcting any mistake in data entry except
entering a negative of the any number you entered.

There is no "paper trail" left behind for error-checking.

An Excel sheet has lots of cells. *Why stick use just two of them?

Gord Dibben *MS Excel MVP

On Wed, 14 Jan 2009 03:17:01 -0800, csoumy



wrote:

This is my problem


I have only two cells in the excel say A1 and B1.


I want the sum of the values in the cell A1 to *be displayed in B1.


For Eg: I enter 10 for the first time in the cell A1, I want 10 to be
displayed in B1.
* * * * * * The second time I enter 20 in the cell A1, I want 30(20+10) to
be displayed in B1.
* * * * * * The third time I enter 30 in the cell A1, I want 60(20+10+30)
to be displayed in B1.


Thus 30 should be displayed in the cell A1 and 60 should be displayed in the
cell B1.


i.e the latest value entered should be displayed in A1 and the cumulative
sum of the values entered should be displayed in B1.


Please help me out!- Ukryj cytowany tekst -


- Pokaż cytowany tekst -




All times are GMT +1. The time now is 12:30 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com