+ Reply to Thread
Results 1 to 5 of 5

Getting error 'false'

  1. #1
    Forum Contributor
    Join Date
    06-29-2014
    Location
    India
    MS-Off Ver
    2010 Windows 10 64 bits
    Posts
    1,269

    Getting error 'false'

    Hi friends,

    If the value in column 'D' is greater than previous value then I want a serial number start from 1. I'm getting formula error 'False' for each first greater value in column 'A'. The number 1 skips 1 entry showing 'False'.

    Any help will be highly appreciated.

    Thanking you in anticipation.
    Attached Files Attached Files
    Sincerely,

    mso3

  2. #2
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Getting error 'false'

    Try this in A5 and filled down.

    =COUNTIF(D$5:D5,D5)

  3. #3
    Forum Contributor
    Join Date
    06-29-2014
    Location
    India
    MS-Off Ver
    2010 Windows 10 64 bits
    Posts
    1,269

    Re: Getting error 'false'

    Hi Jonmo1,

    Perfect! Thank you.

  4. #4
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Getting error 'false'

    You're welcome.

    Just FYI on what was happening with your formula.

    First, FALSE is NOT an error. It's just the opposite of True, means a conditional expression was FALSE.

    So take the first FALSE you see, in A12
    =IF(D12="","",IF(D12>D11,A11=1,IF(D12>D11,A11,A11+1)))

    D12 is NOT "", so it moves to
    IF(D12>D11, this was TRUE, so it then moved to
    A11=1, this is also an expression asking if A11 is equal to 1
    Which was FALSE, so the formula returned FALSE

    I think you probably meant that to be
    =IF(D12="","",IF(D12>D11,1,IF(D12>D11,A11,A11+1)))

    Hope that helps.

  5. #5
    Forum Contributor
    Join Date
    06-29-2014
    Location
    India
    MS-Off Ver
    2010 Windows 10 64 bits
    Posts
    1,269

    Re: Getting error 'false'

    Thank you for explanation of the formula. I agree with you and one more drawback of my formula that after entering the title in row 4 it gives error '#value'.

    Yours working fine after entering the title in row 4.

    Thank you and have a nice time.

+ 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] Getting FALSE error in the Formula
    By jayeshk in forum Excel General
    Replies: 8
    Last Post: 12-19-2015, 03:47 AM
  2. [SOLVED] False error message, when using if
    By JGuajardo in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-05-2015, 10:50 AM
  3. Refresh BackgroundQuery:=False Error
    By kwesmc1 in forum Excel General
    Replies: 0
    Last Post: 09-19-2015, 05:20 PM
  4. [SOLVED] FALSE error in Formula
    By jemmers in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-14-2015, 11:24 AM
  5. False error needed to change
    By astole in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-01-2013, 01:39 AM
  6. IF Statement returns either Value error or False
    By katja328 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-07-2010, 12:46 PM
  7. FALSE error message
    By pentatonic145 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 05-25-2007, 06:24 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