Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've read everything in this group about accumulators, and have
cobbled together some code. I'm puzzled why it won't work. I'm just looking for a summary worksheet to capture daily journal entries into a monthly entry, like so: ClosingEntry SummaryClosingEntry Cash Cash CreditCard1 CreditCard1 CreditCard2 CreditCard2 Etc. Etc. One workbook, two worksheets, code is in the ClosingEntry worksheet module. Thanks for your help, in advance. Private Sub Worksheet_Change(ByVal Target As Range) With Target If .Address(False, False, , False) = Worksheets("ClosingEntry").Range("C5") Then If IsNumeric(.Value) Then Application.EnableEvents = False Worksheets("SummaryClosingEntry").Range("C5").Valu e = _ Worksheets("ClosingEntry").Range("C5").Value + ..Value Application.EnableEvents = True End If End If End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Accumulator | Excel Worksheet Functions | |||
Accumulator Logic | Excel Discussion (Misc queries) | |||
accumulator with other than one | Excel Worksheet Functions | |||
Two cell accumulator | Excel Worksheet Functions | |||
Please help me get this accumulator working | Excel Programming |