+ Reply to Thread
Results 1 to 7 of 7

If then formula stopped working 74 lines in to sheet

  1. #1
    Registered User
    Join Date
    07-08-2016
    Location
    Pensacola, FL
    MS-Off Ver
    2016
    Posts
    20

    If then formula stopped working 74 lines in to sheet

    I have an extensive spreadsheet I use to track tax savings for a job. We have formulas in the H and I columns of the attached sheet on the first tab. They have been working for months. All of the sudden, the formulas are no longer working and I can not figure out why. I have highlighted the areas where the problem is. If anyone can help me figure out why they would no longer work, it would be greatly appreciated.

    The formula in H column is =IF(E4=0," ",IF(SUM(F4-G4)<=4999.99,SUM(F4-G4)*0.075,(SUM(F4-G4)*0.06)+75)) and in the I column it is =IF(E4=0," ",SUM(F4+H4))
    Attached Files Attached Files

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: If then formula stopped working 74 lines in to sheet

    looks like it's working fine to me. It evaluates to the part in red, which is zero:

    =IF(E74=0," ",IF(SUM(F74-G74)<=4999.99,SUM(F74-G74)*0.075,(SUM(F74-G74)*0.06)+75))

    Those sum functions aren't doing anything:

    =IF(E74=0," ", IF(F74-G74 <= 4999.99, (F74-G74)*0.075, (F74-G74)*0.06 + 75))

    Maybe you wanted this instead:

    =IF(E74=0," ", IF(F74-G74 <= 4999.99, (F74-G74)*0.075 + 75, (F74-G74)*0.06 + 75))
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    07-08-2016
    Location
    Pensacola, FL
    MS-Off Ver
    2016
    Posts
    20

    Re: If then formula stopped working 74 lines in to sheet

    When I try that, it only returns a total of $75 instead of $1,350.68 as I would expect the total to be on H74

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: If then formula stopped working 74 lines in to sheet

    F74-G74 = 0, so that's not going to happen.

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: If then formula stopped working 74 lines in to sheet

    Select the cell and watch the formula calculate using the Evaluate Formula button on the Formulas tab.

  6. #6
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: If then formula stopped working 74 lines in to sheet

    Also note that " " returns a space. I think you are looking for "" which returns a blank.

  7. #7
    Forum Contributor
    Join Date
    01-09-2016
    Location
    Perth Western Australia
    MS-Off Ver
    Office 365
    Posts
    257

    Re: If then formula stopped working 74 lines in to sheet

    Hi

    Please ignore this posting

    Cheers
    Last edited by FoxSeaLady; 10-18-2018 at 11:50 AM. Reason: incomplete testing

+ 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. Formula stopped working?
    By natonstan in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 01-13-2016, 04:52 PM
  2. [SOLVED] sheet's code module stopped working
    By DEB1000 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-15-2015, 08:28 PM
  3. [SOLVED] Formula stopped working
    By adambot in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-20-2014, 12:23 PM
  4. formula stopped working
    By cprpacific in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-04-2013, 10:27 AM
  5. Help needed - Formula's stopped working.
    By falconcrest in forum Excel General
    Replies: 5
    Last Post: 01-18-2012, 08:31 AM
  6. Sheet import macro stopped working.
    By dcgrove in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-12-2010, 04:22 PM
  7. Edit / Move or copy sheet stopped working in Excel 2003
    By kris2u in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 10-04-2005, 04:05 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