Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Anna / Ideal
 
Posts: n/a
Default Running total in Excel w/2 columns

Ok, I received an answer to my earlier question If I have 2 columns, one
"Current" and one "MTD" and daily I am changing the "Current" column, can I
have the "MTD" column keep a running total. The answer was
=IF(B2="","",SUM($B$2:B2)). This will put what I enter in the "Current"
column in the "MTD" column, but it doesn't add the new entries to the "MTD"
column, it will just be the number I entered in the "Current" column. How
can I get the "MTD" column to add the new entries to itself each time I enter
a new number in "Current"?
  #2   Report Post  
Duke Carey
 
Posts: n/a
Default

Copy that formula down the column for as many rows as you will likely have
entries in the Current column


"Anna / Ideal" wrote:

Ok, I received an answer to my earlier question If I have 2 columns, one
"Current" and one "MTD" and daily I am changing the "Current" column, can I
have the "MTD" column keep a running total. The answer was
=IF(B2="","",SUM($B$2:B2)). This will put what I enter in the "Current"
column in the "MTD" column, but it doesn't add the new entries to the "MTD"
column, it will just be the number I entered in the "Current" column. How
can I get the "MTD" column to add the new entries to itself each time I enter
a new number in "Current"?

  #3   Report Post  
Anna / Ideal
 
Posts: n/a
Default

Duke: Thank you for your response. My problem is this: When I used this
formula and I typed in a number, that number was shown in the MTD column.
Perfect. Except when I enter a new number in the Current column, it just put
that same number in the MTD column.

Say like this:

Current MTD
Shingle loads 5 10
Job set ups 4 8
Shingle complete 6 15

So, the next day I would just put a new number in the current column and
then I am manually changing the MTD column. I would like it to automatically
add the new number itself in the MTD column.

"Duke Carey" wrote:

Copy that formula down the column for as many rows as you will likely have
entries in the Current column


"Anna / Ideal" wrote:

Ok, I received an answer to my earlier question If I have 2 columns, one
"Current" and one "MTD" and daily I am changing the "Current" column, can I
have the "MTD" column keep a running total. The answer was
=IF(B2="","",SUM($B$2:B2)). This will put what I enter in the "Current"
column in the "MTD" column, but it doesn't add the new entries to the "MTD"
column, it will just be the number I entered in the "Current" column. How
can I get the "MTD" column to add the new entries to itself each time I enter
a new number in "Current"?

  #4   Report Post  
Roger Govier
 
Posts: n/a
Default

Anna
See my response to the posting you put in the other thread you started.
It is best to keep posting in the same thread on the same subject, rather
than starting a new one.

--
Regards

Roger Govier


"Anna / Ideal" wrote in message
...
Duke: Thank you for your response. My problem is this: When I used this
formula and I typed in a number, that number was shown in the MTD column.
Perfect. Except when I enter a new number in the Current column, it just
put
that same number in the MTD column.

Say like this:

Current MTD
Shingle loads 5 10
Job set ups 4 8
Shingle complete 6 15

So, the next day I would just put a new number in the current column and
then I am manually changing the MTD column. I would like it to
automatically
add the new number itself in the MTD column.

"Duke Carey" wrote:

Copy that formula down the column for as many rows as you will likely
have
entries in the Current column


"Anna / Ideal" wrote:

Ok, I received an answer to my earlier question If I have 2
columns, one
"Current" and one "MTD" and daily I am changing the "Current" column,
can I
have the "MTD" column keep a running total. The answer was
=IF(B2="","",SUM($B$2:B2)). This will put what I enter in the
"Current"
column in the "MTD" column, but it doesn't add the new entries to the
"MTD"
column, it will just be the number I entered in the "Current" column.
How
can I get the "MTD" column to add the new entries to itself each time I
enter
a new number in "Current"?



  #5   Report Post  
Duke Carey
 
Posts: n/a
Default

In other words, you are overwriting yesterday's Current numbers with today's
Cuurent numbers, as opposed to yesterday's being at the top of the column,
today's being below yesterday's and tomorrow's being below today's, is that
right?

Excel can only add (or otherwise operate on) what exists in a spreadsheet.
If you replace a number in the Current column, the first number ceases to
exist and Excel can't include it in the total.

You can write VBA code that will run either on closing or opening the
workbook and that will convert the running total to a constant and enter it
into a cell. From there it can be referenced in the new running total.

*HOWEVER*, you lose any audit trail if you do something like that. If you
want to go down that path, I'd recommend using VBA to copy each day's Current
values into a blank area in another range or another spreadsheet from which
you can maintain both the audit trail and the running total.

"Anna / Ideal" wrote:

Duke: Thank you for your response. My problem is this: When I used this
formula and I typed in a number, that number was shown in the MTD column.
Perfect. Except when I enter a new number in the Current column, it just put
that same number in the MTD column.

Say like this:

Current MTD
Shingle loads 5 10
Job set ups 4 8
Shingle complete 6 15

So, the next day I would just put a new number in the current column and
then I am manually changing the MTD column. I would like it to automatically
add the new number itself in the MTD column.

"Duke Carey" wrote:

Copy that formula down the column for as many rows as you will likely have
entries in the Current column


"Anna / Ideal" wrote:

Ok, I received an answer to my earlier question If I have 2 columns, one
"Current" and one "MTD" and daily I am changing the "Current" column, can I
have the "MTD" column keep a running total. The answer was
=IF(B2="","",SUM($B$2:B2)). This will put what I enter in the "Current"
column in the "MTD" column, but it doesn't add the new entries to the "MTD"
column, it will just be the number I entered in the "Current" column. How
can I get the "MTD" column to add the new entries to itself each time I enter
a new number in "Current"?



  #6   Report Post  
RagDyer
 
Posts: n/a
Default

See my suggestion in your original thread.

--
Regards,

RD

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

"Anna / Ideal" wrote in message
...
Duke: Thank you for your response. My problem is this: When I used this
formula and I typed in a number, that number was shown in the MTD column.
Perfect. Except when I enter a new number in the Current column, it just

put
that same number in the MTD column.

Say like this:

Current MTD
Shingle loads 5 10
Job set ups 4 8
Shingle complete 6 15

So, the next day I would just put a new number in the current column and
then I am manually changing the MTD column. I would like it to

automatically
add the new number itself in the MTD column.

"Duke Carey" wrote:

Copy that formula down the column for as many rows as you will likely

have
entries in the Current column


"Anna / Ideal" wrote:

Ok, I received an answer to my earlier question If I have 2

columns, one
"Current" and one "MTD" and daily I am changing the "Current" column,

can I
have the "MTD" column keep a running total. The answer was
=IF(B2="","",SUM($B$2:B2)). This will put what I enter in the

"Current"
column in the "MTD" column, but it doesn't add the new entries to the

"MTD"
column, it will just be the number I entered in the "Current" column.

How
can I get the "MTD" column to add the new entries to itself each time

I enter
a new number in "Current"?


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
Linking Excel columns in two different excel programs Shinra14 Excel Discussion (Misc queries) 2 June 28th 05 01:45 PM
Having trouble totaling columns in excel 2003, always worked b4 rjmac Excel Worksheet Functions 1 June 24th 05 07:01 PM
How do i copy columns of data in notepad into microsoft excel? Jason Excel Discussion (Misc queries) 1 February 10th 05 09:20 PM
timesheet with running total of overtime kimmyrt Excel Worksheet Functions 2 January 26th 05 06:15 PM
how do i set up a single cell continual entry in excel to total f. mike@swallow Excel Discussion (Misc queries) 1 December 7th 04 12:29 PM


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