+ Reply to Thread
Results 1 to 6 of 6

how can I check the value 1 cell against the values of entire row

Hybrid View

  1. #1
    Danbmarine
    Guest

    how can I check the value 1 cell against the values of entire row

    I would like to see if one cell is equal to any other cell in an entire row.
    The row contains over 10,000 cells of data how can I insert a formula to do
    this?

  2. #2
    Gary''s Student
    Guest

    RE: how can I check the value 1 cell against the values of entire row

    Use the MATCH() function. It will tell you both if its there and where it is.
    --
    Gary's Student


    "Danbmarine" wrote:

    > I would like to see if one cell is equal to any other cell in an entire row.
    > The row contains over 10,000 cells of data how can I insert a formula to do
    > this?


  3. #3
    Danbmarine
    Guest

    RE: how can I check the value 1 cell against the values of entire

    thanks, will this also work if the target cell is not in the same row as the
    list that I am comparing it to?

    "Gary''s Student" wrote:

    > Use the MATCH() function. It will tell you both if its there and where it is.
    > --
    > Gary's Student
    >
    >
    > "Danbmarine" wrote:
    >
    > > I would like to see if one cell is equal to any other cell in an entire row.
    > > The row contains over 10,000 cells of data how can I insert a formula to do
    > > this?


  4. #4
    Gary''s Student
    Guest

    RE: how can I check the value 1 cell against the values of entire

    yes
    --
    Gary''s Student


    "Danbmarine" wrote:

    > thanks, will this also work if the target cell is not in the same row as the
    > list that I am comparing it to?
    >
    > "Gary''s Student" wrote:
    >
    > > Use the MATCH() function. It will tell you both if its there and where it is.
    > > --
    > > Gary's Student
    > >
    > >
    > > "Danbmarine" wrote:
    > >
    > > > I would like to see if one cell is equal to any other cell in an entire row.
    > > > The row contains over 10,000 cells of data how can I insert a formula to do
    > > > this?


  5. #5
    Registered User
    Join Date
    11-22-2005
    Posts
    13

    Similar problem

    I have a similar situation. I need the result to be a logical TRUE/FALSE. I cannot figure out how to use the #N/A value in a logic test. Basically I need to see if the reference cell value is in the list and return TRUE if its and FALSE if it isnt. The only stumbling block is how to deal with the #N/A error. Any suggestions?

  6. #6
    Jay
    Guest

    Re: how can I check the value 1 cell against the values of entire row

    > I have a similar situation. I need the result to be a logical
    > TRUE/FALSE. I cannot figure out how to use the #N/A value in a logic
    > test. Basically I need to see if the reference cell value is in the
    > list and return TRUE if its and FALSE if it isnt. The only stumbling
    > block is how to deal with the #N/A error. Any suggestions?


    You can test for the #N/A error with the function ISNA; for example:
    =NOT(ISNA(VLOOKUP(G1,D:D,1,FALSE)))

    But if you're using VLOOKUP (or similar), you might consider using COUNTIF
    instead -- there are fewer error conditions to cope with. For example:
    =COUNTIF(D:D,G1)>0

+ 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