+ Reply to Thread
Results 1 to 4 of 4

List out the item that appears in one time from a database

  1. #1
    Guest
    Join Date
    01-08-2009
    Location
    None
    MS-Off Ver
    None
    Posts
    9

    List out the item that appears in one time from a database

    If I am given a database ranging from A1:C3 in the following table, how can I set formula to derive the result as listing out in A5:A10 ? The implication for this work is that I want to show the item that appears in one time and then list them out. Those appearing in more than one time is intended to be excluded.

    Column A Column B Column C
    Row 1 M N K
    Row 2 X U M
    Row 3 K N O
    Row 4
    Row 5 K
    Row 6 M
    Row 7 N
    Row 8 O
    Row 9 U
    Row 10 X

    Kelvin

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,037

    Re: List out the item that appears in one time from a database

    =if(and(a1>0;b1="";c1="");a1;"")
    Never use Merged Cells in Excel

  3. #3
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,037

    Re: List out the item that appears in one time from a database

    Or try this: =IF(AND(A1;OR(ISTEXT(B1);ISTEXT(C1)));"";A1)

    (this will give you 0 in Row 4, previous will leave row 4 empty but you can put in AND also A1>0 and get emty too)

  4. #4
    Guest
    Join Date
    01-08-2009
    Location
    None
    MS-Off Ver
    None
    Posts
    9

    Re: List out the item that appears in one time from a database

    Thanks a lot...

+ 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