+ Reply to Thread
Results 1 to 9 of 9

Formula that lists out a unique value

  1. #1
    Forum Contributor
    Join Date
    10-15-2013
    Location
    Calgary, Alberta
    MS-Off Ver
    Excel 2007
    Posts
    218

    Formula that lists out a unique value

    Hello All,

    Thanks in advance for any help...

    Please see attached spreadsheet.

    I need a formula in Column H that will look at Column C and G.

    If the Column G has only "BASE" or "Blank" for Column C to return "No WC"
    If the Column G has only Anything other then "Base" or "Blank" to state what it is. I've used for example SAW, GOW and HHHC in my example; but this could be anything. But if it has something not Blank or "BASE" to not put in "No WC"

    Also, I would want "No WC" to only show up once for that reference number (Column C) as Column C maybe sorted differently, I would only want the "No WC" on the first time it comes up.

    Is such a formula possible?

    Thanks,

    -Jason
    Attached Files Attached Files

  2. #2
    Forum Contributor
    Join Date
    10-15-2013
    Location
    Calgary, Alberta
    MS-Off Ver
    Excel 2007
    Posts
    218

    Re: Formula that lists out a unique value

    Not sure if this helps as I was trying to figure this outmyself but I don't know how to find unique values.

    In second sheet I put in the formula in Column I:

    =IF(ISNUMBER(SEARCH("*Base*",G4)),"",G4)

    This removed Base and made it blank. And then anything else woulc come over. I highlighted in blue the values that should be No WC.

    Is there a way to make this one formula?

    Thanks,
    Attached Files Attached Files

  3. #3
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Formula that lists out a unique value

    Try in H4 copied down

    =IF(AND(G4<> {"base",""}), G4, IF((COUNTIFS($C$4:$C$23,C4, $G$4:$G$23, "Base")+COUNTIFS($C$4:$C$23,C4, $G$4:$G$23, ""))=COUNTIF($C$4:$C$23, C4), IF(C3=C4,"","No WC"),""))

    You didn't put anything in H16 and I think that should have "No WC" If not, explain.
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  4. #4
    Forum Contributor
    Join Date
    10-15-2013
    Location
    Calgary, Alberta
    MS-Off Ver
    Excel 2007
    Posts
    218

    Re: Formula that lists out a unique value

    Quote Originally Posted by ChemistB View Post
    Try in H4 copied down

    =IF(AND(G4<> {"base",""}), G4, IF((COUNTIFS($C$4:$C$23,C4, $G$4:$G$23, "Base")+COUNTIFS($C$4:$C$23,C4, $G$4:$G$23, ""))=COUNTIF($C$4:$C$23, C4), IF(C3=C4,"","No WC"),""))

    You didn't put anything in H16 and I think that should have "No WC" If not, explain.
    Awesome! This works perfectly. H16 was my human error (hence why i love excel).

    this is great "(AND(G2<> {"base",""})"

    Just for my own reference what does the { and } do?

  5. #5
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,939

    Re: Formula that lists out a unique value

    =IF(AND($G4<>"Base",$G4<>""),$G4,IF(AND(COUNTIF($C$4:$C$23,$C4)=SUM(COUNTIFS($C$4:$C$23,$C4,$G$4:$G$23,{"Base",""})),$C3<>$C4),"No WC",""))
    TRY THIS AND COPY TOWARDS DOWN
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Formula that lists out a unique value

    When you are using an OR or AND argument in a function and referencing a specific cell in the sub arguments, then you can set it up like a small array so instead of
    =OR(G4="base", G4= "")
    you can enter
    =OR(G4={"base", ""})
    Hope that helps.

  7. #7
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,939

    Re: Formula that lists out a unique value

    Quote Originally Posted by ChemistB View Post
    When you are using an OR or AND argument in a function and referencing a specific cell in the sub arguments, then you can set it up like a small array so instead of
    =OR(G4="base", G4= "")
    you can enter
    =OR(G4={"base", ""})
    Hope that helps.
    Thank you Chemist for your tip

  8. #8
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,939

    Re: Formula that lists out a unique value

    Quote Originally Posted by ChemistB View Post
    When you are using an OR or AND argument in a function and referencing a specific cell in the sub arguments, then you can set it up like a small array so instead of
    =OR(G4="base", G4= "")
    you can enter
    =OR(G4={"base", ""})
    Hope that helps.
    Thank you Chemist for your tip

  9. #9
    Forum Contributor
    Join Date
    10-15-2013
    Location
    Calgary, Alberta
    MS-Off Ver
    Excel 2007
    Posts
    218

    Re: Formula that lists out a unique value

    Thanks for the explaination. I will have to try this!

+ 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] Unique entries formula from 2 lists
    By pauldaddyadams in forum Excel General
    Replies: 5
    Last Post: 08-13-2014, 07:58 AM
  2. Formula for finding unique data for lists
    By alcorp in forum Excel General
    Replies: 15
    Last Post: 07-21-2014, 03:49 PM
  3. Dependent drop down lists without creating unique named lists
    By pajordan in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-11-2013, 12:20 PM
  4. Validation Lists - Multiple dependent lists with unique values
    By Lewigi in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-16-2013, 06:42 AM
  5. MultiLookup + Unique + Sorted Lists in a Drop-Down in the most faster formula
    By e4excel in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-09-2012, 01:03 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