#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
darkbearpooh1
 
Posts: n/a
Default cumulative total


ok,

heres what i am trying to do now, lol.

Take two cells one will be the projection say 10
the other will be actual say 9
can excel tell me that equals -1 ?
i mean minus one from the projection not a negative number
and if so then can it cumulative totals of that ?
say i have projections in different cells ex: 9,10,11,12
the actual numbers below would be 9,11,8,10
so the formula needs to tell me first one is qual second plus 1 third
minus 3 forth plus 2 and so forth and once it gives me those then total
them in colum so would total minus 4?

sorry hard to explain

TIA


--
darkbearpooh1
------------------------------------------------------------------------
darkbearpooh1's Profile: http://www.excelforum.com/member.php...o&userid=30640
View this thread: http://www.excelforum.com/showthread...hreadid=505016

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
SteveG
 
Posts: n/a
Default cumulative total


Assuming your projections are in A1:A4 and actuals in B1:B4. In C1
enter

=(B1-A1) and copy down to C4. This will return the values (I used your
posted data) of 0,1,-3,-2. In C5 then SUM(C1:C4) which returns the -4.


Does that help?

Steve


--
SteveG
------------------------------------------------------------------------
SteveG's Profile: http://www.excelforum.com/member.php...fo&userid=7571
View this thread: http://www.excelforum.com/showthread...hreadid=505016

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn
 
Posts: n/a
Default cumulative total

Can they be seperated into seperate colums? if so, it should be easy
(assuming the same number of columns everytime.)

9 10 11 12
9 11 8 10
0 1 -3 -2 -4

Formula for A3 is =A2-A1 copied to B3 through D3. And then formula for E3 is
=SUM(A3:D3)

If they needed to be in just one cell seperated by commas, it might be
doable, but probably wouldn't be easy, especially if the count of numbers
varied. Somebody could probably come up with a formula to do it, but it
would probably be able to do with VBA.

--
Kevin Vaughn


"darkbearpooh1" wrote:


ok,

heres what i am trying to do now, lol.

Take two cells one will be the projection say 10
the other will be actual say 9
can excel tell me that equals -1 ?
i mean minus one from the projection not a negative number
and if so then can it cumulative totals of that ?
say i have projections in different cells ex: 9,10,11,12
the actual numbers below would be 9,11,8,10
so the formula needs to tell me first one is qual second plus 1 third
minus 3 forth plus 2 and so forth and once it gives me those then total
them in colum so would total minus 4?

sorry hard to explain

TIA


--
darkbearpooh1
------------------------------------------------------------------------
darkbearpooh1's Profile: http://www.excelforum.com/member.php...o&userid=30640
View this thread: http://www.excelforum.com/showthread...hreadid=505016


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
darkbearpooh1
 
Posts: n/a
Default cumulative total


Thanks, Kevin and Steve

Thats what I need but my problem is like you mentioned kevin in E4 it
gives the correct whole total but i need to keep a running total for
each cell so in other words one cell will say its minus 1 for that or
whatever and the next might be plus 2 ok under those in another cell
can it give me the running total of the plus 2 minus 2 or whatever the
actual numbers are ?


--
darkbearpooh1
------------------------------------------------------------------------
darkbearpooh1's Profile: http://www.excelforum.com/member.php...o&userid=30640
View this thread: http://www.excelforum.com/showthread...hreadid=505016

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
darkbearpooh1
 
Posts: n/a
Default cumulative total


Thanks, Kevin and Steve

Thats what I need but my problem is like you mentioned kevin in E4 it
gives the correct whole total but i need to keep a running total for
each cell so in other words one cell will say its minus 1 for that or
whatever and the next might be plus 2 ok under those in another cell
can it give me the running total of the plus 2 minus 2 or whatever the
actual numbers are ?


--
darkbearpooh1
------------------------------------------------------------------------
darkbearpooh1's Profile: http://www.excelforum.com/member.php...o&userid=30640
View this thread: http://www.excelforum.com/showthread...hreadid=505016



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn
 
Posts: n/a
Default cumulative total

I'm not sure I understand what you want, but I took a shot anyway. If this
is what you mean:

9 10 11 12
9 11 8 10
0 1 -3 -2 -4
0 1 -2 -4
then the formulae in the 4th row a for A4: =A3
For the rest: =A4+B3 (and copied across)

HTH
--
Kevin Vaughn


"darkbearpooh1" wrote:


Thanks, Kevin and Steve

Thats what I need but my problem is like you mentioned kevin in E4 it
gives the correct whole total but i need to keep a running total for
each cell so in other words one cell will say its minus 1 for that or
whatever and the next might be plus 2 ok under those in another cell
can it give me the running total of the plus 2 minus 2 or whatever the
actual numbers are ?


--
darkbearpooh1
------------------------------------------------------------------------
darkbearpooh1's Profile: http://www.excelforum.com/member.php...o&userid=30640
View this thread: http://www.excelforum.com/showthread...hreadid=505016


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
darkbearpooh1
 
Posts: n/a
Default cumulative total


yes that was exactly what i meant! Thanksssssss


--
darkbearpooh1
------------------------------------------------------------------------
darkbearpooh1's Profile: http://www.excelforum.com/member.php...o&userid=30640
View this thread: http://www.excelforum.com/showthread...hreadid=505016

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn
 
Posts: n/a
Default cumulative total

You are welcome.
--
Kevin Vaughn


"darkbearpooh1" wrote:


yes that was exactly what i meant! Thanksssssss


--
darkbearpooh1
------------------------------------------------------------------------
darkbearpooh1's Profile: http://www.excelforum.com/member.php...o&userid=30640
View this thread: http://www.excelforum.com/showthread...hreadid=505016


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
Formula for cumulative total Dave Excel Discussion (Misc queries) 3 September 23rd 05 01:38 AM
Percent of total in Pivot tables Pallet1210A Excel Worksheet Functions 1 September 8th 05 07:12 PM
CUMULATIVE TOTAL Norm Excel Worksheet Functions 1 February 3rd 05 03:30 PM
cumulative total using two cells Bill Excel Worksheet Functions 1 January 30th 05 04:08 AM
Cumulative Total RockyMountains Excel Discussion (Misc queries) 9 January 12th 05 11:03 AM


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