+ Reply to Thread
Results 1 to 3 of 3

xlfn.IFERROR or IFERROR don't work in Excel 98-2003

  1. #1
    Registered User
    Join Date
    07-22-2013
    Location
    Germany
    MS-Off Ver
    Excel 2003, 2010
    Posts
    21

    xlfn.IFERROR or IFERROR don't work in Excel 98-2003

    I got a list of numbers in a rows, i like to remove the duplicates numbers .
    what i got.JPG


    I used this formula, suggested by one of the forum member, it's worked for him. But in Excel 98_2003, it's not working.

    =_xlfn.IFERROR(INDEX(D$2:D$162,MATCH(0,COUNTIF(E$1:E2,D$2:D$162),0)),"")

    Anyone can explain me or give me another formula could match with Excel 98-2003?

    Thank you
    Attached Files Attached Files

  2. #2
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: xlfn.IFERROR or IFERROR don't work in Excel 98-2003

    IFERROR works in EXCEL>2003. Try using IF(ISERROR..

    =IF(ISERROR(INDEX(D$2:D$162,MATCH(0,COUNTIF(E$1:E1,D$2:D$162),0))),"",(INDEX(D$2:D$162,MATCH(0,COUNTIF(E$1:E1,D$2:D$162),0))))
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  3. #3
    Registered User
    Join Date
    07-22-2013
    Location
    Germany
    MS-Off Ver
    Excel 2003, 2010
    Posts
    21

    Re: xlfn.IFERROR or IFERROR don't work in Excel 98-2003

    I don't know why, "ISERROR(...) " is not working on my Excel.
    SO i used this Macro:

    Sub DeleteDups()
    Dim x As Long
    Dim LastRow As Long
    LastRow = Range("A65536").End(xlUp).Row
    For x = LastRow To 1 Step -1
    If Application.WorksheetFunction.CountIf(Range("A1:A" & x), Range("A" & x).Text) > 1 Then
    Range("A" & x).EntireRow.Delete
    End If
    Next x
    End Sub

+ 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 transform an IFERROR formula to Excel 2003
    By lisaopar in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 01-30-2013, 07:04 AM
  2. [SOLVED] SUMIFS and IFERROR, not working in excel 2003, NEED SOLUTION
    By pakian in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-22-2012, 06:36 PM
  3. IFERROR Function in Excel 2003
    By mannu.bhatia11 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-06-2012, 02:40 AM
  4. IFERROR for ver. 2003
    By ElmerS in forum Excel General
    Replies: 4
    Last Post: 08-05-2010, 11:37 AM
  5. Excel 2007 : IFERROR to work in 2003
    By Nikeyg in forum Excel General
    Replies: 4
    Last Post: 08-04-2010, 08:14 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