+ Reply to Thread
Results 1 to 4 of 4

updatin totals in exc el via inputlist

Hybrid View

  1. #1
    Registered User
    Join Date
    07-11-2015
    Location
    Zoetermeer
    MS-Off Ver
    2013
    Posts
    2

    updatin totals in exc el via inputlist

    My problem is this:

    I have a list of items i column A. In the next column there is the quantity of each item.
    The probl;em is to updat the quantities. FRor eample:

    A B C
    1 item quantity update
    2 brickA 10 5

    I know that it is very simple to add the 5 new items to the total (10)
    Then the new quantity is 15
    After that calculation, I want to clean the quantity in column C to make it ready for a new input
    But when I clean cel C2, the total changes back to 10... I want the 15 remains there, but how?


    Can I do this by norma formulas or is VBA the only solution
    I'm completely new to VBA

    Thanks in advanve

    Coen

  2. #2
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: updatin totals in exc el via inputlist

    Coen,
    Place this code in the sheet you are using ....
    Private Sub Worksheet_Change(ByVal Target As Excel.Range)
          With Target
             If .Address(False, False) = "C2" Then
                If IsNumeric(.Value) Then
                   Application.EnableEvents = False
                   Range("B2").Value = Range("B2").Value + .Value
                   Application.EnableEvents = True
                End If
             End If
          End With
        End Sub
    See if that works for you
    1N73LL1G3NC3 15 7H3 4B1L17Y 70 4D4P7 70 CH4NG3 - 573PH3N H4WK1NG
    You don't have to add Rep if I have helped you out (but it would be nice), but please mark the thread as SOLVED if your issue is resolved.

    Tom

  3. #3
    Registered User
    Join Date
    07-11-2015
    Location
    Zoetermeer
    MS-Off Ver
    2013
    Posts
    2

    Re: updatin totals in exc el via inputlist

    Tom

    Thank you. it's working fineBeste regards

    Coen

  4. #4
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: updatin totals in exc el via inputlist

    You're welcome Coen, glad it worked for you.

    Please mark the thread as "SOLVED" using the thread tools option in your original post, thank you
    Last edited by gmr4evr1; 07-12-2015 at 09:21 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] How to get cumulative totals from weekly totals (IE sum of all previous cells)?
    By moeburn in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-08-2013, 07:29 PM
  2. [SOLVED] running totals in Pivot Table - removing a user from the totals for the current week
    By eisenbergg in forum Excel Charting & Pivots
    Replies: 12
    Last Post: 09-08-2013, 04:39 PM
  3. [SOLVED] How do I group daily totals into weekly/monthly/quarterly totals
    By situationroom in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-28-2013, 09:58 AM
  4. Method for calculating Invoice Totals and Grand totals
    By sahran4441 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 11-06-2010, 10:24 PM
  5. Replies: 4
    Last Post: 01-10-2008, 12:31 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1