Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
KARIM
 
Posts: n/a
Default totalizer formula


I need a totalizer formula?

example : A number is put daily in A1, then auto transfered to A2
Next day a new number entred in A1 will be
accumulated
in A2.( A2 is considred as accumulator or
integrator)

thanx for help.;)


--
KARIM
------------------------------------------------------------------------
KARIM's Profile: http://www.excelforum.com/member.php...o&userid=29874
View this thread: http://www.excelforum.com/showthread...hreadid=495779

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Niek Otten
 
Posts: n/a
Default totalizer formula

Hi KARIM,

See

http://www.mcgimpsey.com/excel/accumulator.html

--
Kind regards,

Niek Otten

"KARIM" wrote in
message ...

I need a totalizer formula?

example : A number is put daily in A1, then auto transfered to A2
Next day a new number entred in A1 will be
accumulated
in A2.( A2 is considred as accumulator or
integrator)

thanx for help.;)


--
KARIM
------------------------------------------------------------------------
KARIM's Profile:
http://www.excelforum.com/member.php...o&userid=29874
View this thread: http://www.excelforum.com/showthread...hreadid=495779



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gord Dibben
 
Posts: n/a
Default totalizer formula

Karim

If you "must" have an accumulator cell, check this thread out before
proceeding.

http://snipurl.com/8e64


Gord Dibben Excel MVP

On Fri, 23 Dec 2005 10:06:47 -0600, KARIM
wrote:


I need a totalizer formula?

example : A number is put daily in A1, then auto transfered to A2
Next day a new number entred in A1 will be
accumulated
in A2.( A2 is considred as accumulator or
integrator)

thanx for help.;)

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Niek Otten
 
Posts: n/a
Default totalizer formula

A useful addition, Gord
I have put it in my notes

Thanks,

--
Kind regards,

Niek Otten

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Karim

If you "must" have an accumulator cell, check this thread out before
proceeding.

http://snipurl.com/8e64


Gord Dibben Excel MVP

On Fri, 23 Dec 2005 10:06:47 -0600, KARIM
wrote:


I need a totalizer formula?

example : A number is put daily in A1, then auto transfered to A2
Next day a new number entred in A1 will be
accumulated
in A2.( A2 is considred as accumulator or
integrator)

thanx for help.;)



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
KARIM
 
Posts: n/a
Default totalizer formula


Thankx A Lot For Help


--
KARIM
------------------------------------------------------------------------
KARIM's Profile: http://www.excelforum.com/member.php...o&userid=29874
View this thread: http://www.excelforum.com/showthread...hreadid=495779



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
KARIM
 
Posts: n/a
Default totalizer formula


Thankx A Lot For Help


--
KARIM
------------------------------------------------------------------------
KARIM's Profile: http://www.excelforum.com/member.php...o&userid=29874
View this thread: http://www.excelforum.com/showthread...hreadid=495779

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gord Dibben
 
Posts: n/a
Default totalizer formula

Thanks Nick

"Accumulating" has its place, but not very often and is fraught with peril
when a mistake is made.

I answered one poster with this method and he seemed pleased.

You could use a worksheet_change event macro to enter the contents of the
input cell into column B at the next available empty row.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo stoppit
Application.EnableEvents = False
If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub
With Target
If .Value < "" Then
ActiveSheet.Cells(Rows.Count, "B").End(xlUp) _
.Offset(1, 0).Value = Target.Value
End If
End With
stoppit:
Application.EnableEvents = True
End Sub

Right-click on your sheet tab and select "View Code". Copy the above code
into the module that opens.

I would enter in B1 =Sum(B2:B500). Whatever you think you need
to gather all future values in Column B.

Using A1 as the input cell, any new number entered will be automatically
placed into Column B(starting at B2)at the next available empty row.

Now you have a "paper trail" and a Totalizer cell(B1)

Note: if a mistake is made in last entered number in A1 , you will have to
delete the contents of the last cell in Column B then re-enter in A1.


Gord

On Fri, 23 Dec 2005 19:53:01 +0100, "Niek Otten" wrote:

A useful addition, Gord
I have put it in my notes

Thanks,

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 Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 07:48 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM
Help with macro formula and variable Huge project Excel Worksheet Functions 0 December 28th 04 01:27 AM


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