+ Reply to Thread
Results 1 to 4 of 4

using IF to modify a formula

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    10-09-2006
    Posts
    212

    using IF to modify a formula

    I have a simple forumla in cell A4. It is (A1-A2)+A3. Lets say I call this formula plus. Formula minus would be (A1+A2)-A3. I can create a drop down for the plus, minus. But what would add the formula in A4 to check if A5 has plus or minus and calculate accordingly?

    Warmest regards,
    Martin.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Maybe

    =IF(A5="+",(A1-A2)+A3,IF(A5="-",(A1+A2)-A3,""))
    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229
    If the dropdown is putting the string "+" in A5, this should work

    =A1 + (2*(A5="+")-1)*(A3-A2))
    which is a differnt form of
    =A1 + IF(A5="+",A3-A2,A2-A3)
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  4. #4
    Forum Contributor
    Join Date
    10-09-2006
    Posts
    212

    Smile

    Work great : )

    Thanks very much VBA.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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