+ Reply to Thread
Results 1 to 15 of 15

how to auto calculation the value

  1. #1
    Registered User
    Join Date
    05-02-2014
    Location
    dong nai, Vietnam
    MS-Off Ver
    Excel 2013
    Posts
    15

    how to auto calculation the value

    can someone please help me solve this problem by formula or VBA. (refer to formula). Sorry for my bad english.

    i have the input1, and i want the formula auto sum the input 2 which between the the value of input 1, And give the result column.

    input1 input2 result
    200 3
    4 7
    200 3
    8
    5
    12 28
    250 54
    34
    3
    4
    7 102
    100 9 9
    200 10 10


    Thank you for your help.
    Please help me
    Attached Files Attached Files

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: how to auto calculation the value

    Try this, copied down in C2...
    =IF(A2="",B2+C1,B2)

    If you dont want to see the intermediate values, try using Conditional Formatting to make them appear invisible.

    1. highlight the range you want to apply the conditional formatting to (C2:C14 in this case - adjust as needed)
    2. on the home tab, styles, select CF
    3. select new rule, select use formula
    4. enter =A3="" set font color to white
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: how to auto calculation the value

    Try this...

    Data Range
    A
    B
    C
    1
    input1
    input2
    result
    2
    200
    3
    3
    4
    7
    4
    200
    3
    5
    8
    6
    5
    7
    12
    28
    8
    250
    54
    9
    34
    10
    3
    11
    4
    12
    7
    102
    13
    100
    9
    9
    14
    200
    10
    10


    This formula entered in C2 and copied down:

    =IF(OR(AND(A2<>"",A3<>""),AND(A2="",A3<>""),B3=""),SUM(B$2:B2)-SUM(C$1:C1),"")
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  4. #4
    Registered User
    Join Date
    05-02-2014
    Location
    dong nai, Vietnam
    MS-Off Ver
    Excel 2013
    Posts
    15

    Re: how to auto calculation the value

    Thank you. It's very helpful to me. It work both way for me. I learn alot

  5. #5
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: how to auto calculation the value

    You're welcome. We appreciate the feedback!


    If your question has been solved please mark the thread as being solved.

    In the menu bar above the very first post select Thread Tools, then select Mark this thread as solved.

  6. #6
    Registered User
    Join Date
    05-02-2014
    Location
    dong nai, Vietnam
    MS-Off Ver
    Excel 2013
    Posts
    15

    Re: how to auto calculation the value

    Can i ask excel experts one more problem please? I tried to figure out the formula but i can't due to my limitation of excel skill.

    i have the same input1 and i want to calculate the input2. i want to have the result from the input2 (as file attach)
    result = B2 + A3 - B3

    please help me if there is a formula(refer) or VBA (please show me where to copy)

    input1 input2 result
    20
    200 50 170
    200
    30 220
    250
    5 275
    100 80 25
    20 60
    Attached Files Attached Files
    Last edited by vho; 05-06-2014 at 04:31 AM.

  7. #7
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: how to auto calculation the value



    I can follow this much:

    20+200-50 = 170

    After that I'm completely lost!

  8. #8
    Registered User
    Join Date
    05-02-2014
    Location
    dong nai, Vietnam
    MS-Off Ver
    Excel 2013
    Posts
    15

    Re: how to auto calculation the value

    may be this full file could give some idea. And if its ok, can you solve the column Cal. As well please.
    Attached Files Attached Files
    Last edited by vho; 05-07-2014 at 03:58 AM.

  9. #9
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: how to auto calculation the value

    Sorry, still confused.

  10. #10
    Registered User
    Join Date
    05-02-2014
    Location
    dong nai, Vietnam
    MS-Off Ver
    Excel 2013
    Posts
    15

    Re: how to auto calculation the value

    Thank you very much for your time

  11. #11
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: how to auto calculation the value

    You're welcome!

    Good luck!

  12. #12
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: how to auto calculation the value

    This array formula (confirm with ctrl+shift+enter)
    =IF(AND(NOT(B2=""),COUNTA($B$2:B2)>=2),INDEX($A$1:A2,MAX(IF($A$2:A2="",0,ROW($A$2:A2))))+INDEX($B$1:B1,MAX(IF($B$1:B1="",0,ROW($B$1:B1))))-B2,"")
    in C2 and copied down will return the results you have in your example.

  13. #13
    Registered User
    Join Date
    05-02-2014
    Location
    dong nai, Vietnam
    MS-Off Ver
    Excel 2013
    Posts
    15

    Re: how to auto calculation the value

    it gave me the #value# (170, 220,...) where it support to show number. if this formula work. can u give me the sample as well please.

  14. #14
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: how to auto calculation the value

    Example is attached. Make sure you enter the formula using CTRL+SHIFT+ENTER because it is an array formula.
    Attached Files Attached Files

  15. #15
    Registered User
    Join Date
    05-02-2014
    Location
    dong nai, Vietnam
    MS-Off Ver
    Excel 2013
    Posts
    15

    Re: how to auto calculation the value

    thanks it's working.

+ 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. manual calculation for one worksheet by F9 and auto calculation for other sheet
    By rayshimadri in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-22-2013, 06:16 AM
  2. Man Day Calculation and Auto Sort
    By BAAllen in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 01-03-2011, 09:04 AM
  3. Auto Calculation
    By swapon_uiu in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-10-2010, 09:09 PM
  4. [SOLVED] Auto Calculation not working
    By vinnie31 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-10-2006, 06:50 PM
  5. Auto Calculation
    By Mahprr in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 07-08-2005, 06:54 AM

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