+ Reply to Thread
Results 1 to 24 of 24

Most Frequent Text String

  1. #1
    Registered User
    Join Date
    11-06-2008
    Location
    Australia
    Posts
    11

    Most Frequent Text String

    Hi all

    What im trying to do is get the most common (or frequent) text string from a range to display in another cell. eg a list of names Bob Barton, Carl Carry, etc where there names could be in a range of cells umteen times (eg sales record) so i know who sold the most for the month without using a count, i need the actual name in the new cell.

    Any Ideas - i already tried using this formula:

    =INDEX(sales,MATCH(MAX(COUNTIF(sales,sales)),COUNTIF(sales,sales),0))

    but it returns a #N/A - a value is not avalible to the formula or function

    could it be because im using a text srting in my values?

    Brett

  2. #2
    Registered User
    Join Date
    11-24-2008
    Location
    Moscow, Russia
    MS-Off Ver
    MS Office 2003, 2007
    Posts
    90
    Brett, I see the problem in using COUNTIF function. Try it separately, apart from the rest of the formula. It returns the number of duplicates of the value in the current row. So you need to copy it down to see this nimber of duplicates for each value. And you want your formula to find the maximum of these and then return the name.
    You may also enter MAX(COUNTIF(sales,sales)) as an array formula and get the maximum number of duplicates, but if you try to use MATCH it won't work. So I suggest that you add a field with COUNTIF results, and then use your INDEX+MATCH formula search the maximum value and return the name.
    Please try and say if this helps

  3. #3
    Valued Forum Contributor
    Join Date
    11-11-2008
    Location
    Euro
    MS-Off Ver
    2007, 2010
    Posts
    470
    Quote Originally Posted by Bretto75 View Post
    Hi all

    What im trying to do is get the most common (or frequent) text string from a range to display in another cell. eg a list of names Bob Barton, Carl Carry, etc where there names could be in a range of cells umteen times (eg sales record) so i know who sold the most for the month without using a count, i need the actual name in the new cell.

    Any Ideas - i already tried using this formula:

    =INDEX(sales,MATCH(MAX(COUNTIF(sales,sales)),COUNTIF(sales,sales),0))

    but it returns a #N/A - a value is not avalible to the formula or function

    could it be because im using a text srting in my values?

    Brett
    The formula is OK, however you should use it in Array-Formula, That means you should press Ctrl+Shift+Enter after type or Edit this formula - it will add automatically two symbol { }

    =INDEX(B16:B18,MATCH(MAX(COUNTIF(B16:B18,B16:B18)),COUNTIF(B16:B18,B16:B18)))
    press Ctrl+Shift+Enter
    becomes
    {=INDEX(B16:B18,MATCH(MAX(COUNTIF(B16:B18,B16:B18)),COUNTIF(B16:B18,B16:B18)))}

  4. #4
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264
    Here's an alternative that doesn't require Ctrl+Shift+Enter (note that all formulas so far only return a singluar result, so if two people had the same number of maximum sales then only the first would be returned):

    =INDEX(sales,MODE(MATCH(sales,sales,0)))

    Richard
    Richard Schollar
    Microsoft MVP - Excel

  5. #5
    Valued Forum Contributor
    Join Date
    11-11-2008
    Location
    Euro
    MS-Off Ver
    2007, 2010
    Posts
    470
    Quote Originally Posted by RichardSchollar View Post
    Here's an alternative that doesn't require Ctrl+Shift+Enter (note that all formulas so far only return a singluar result, so if two people had the same number of maximum sales then only the first would be returned):

    =INDEX(sales,MODE(MATCH(sales,sales,0)))

    Richard
    It is great! thanks for RichardSchollar

    RichardSchollar! Do you think we can have a formula that list all sellers who get the same number of maximum sales?? How to do it?
    .
    Thanks in advance for all

  6. #6
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    tigertiger something wrong there if i apply the formula
    {=INDEX(B1:B10,MATCH(MAX(COUNTIF(B1:B10,B1:B10)),COUNTIF(B1:B10,B1:B10)))}
    to in b1:10

    martin
    martin
    martin
    martin
    fred
    fred
    fred
    chris
    chris
    chris
    it returns chris not martin but =INDEX(sales,MODE(MATCH(sales,sales,0)))from richard does return martin

  7. #7
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264
    Martin

    That formula needs the third argument of the MATCh function to be FALSE (or zero):

    {=INDEX(B1:B10,MATCH(MAX(COUNTIF(B1:B10,B1:B10)),COUNTIF(B1:B10,B1:B10),0))}

    Richard

  8. #8
    Valued Forum Contributor
    Join Date
    11-11-2008
    Location
    Euro
    MS-Off Ver
    2007, 2010
    Posts
    470
    Quote Originally Posted by martindwilson View Post
    tigertiger something wrong there if i apply the formula
    {=INDEX(B1:B10,MATCH(MAX(COUNTIF(B1:B10,B1:B10)),COUNTIF(B1:B10,B1:B10)))}
    to in b1:10

    martin
    martin
    martin
    martin
    fred
    fred
    fred
    chris
    chris
    chris
    it returns chris not martin but =INDEX(sales,MODE(MATCH(sales,sales,0)))from richard does return martin
    Oh, You should put the formula in only one cell not array of cells

  9. #9
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264
    Quote Originally Posted by tigertiger View Post
    It is great! thanks for RichardSchollar

    RichardSchollar! Do you think we can have a formula that list all sellers who get the same number of maximum sales?? How to do it?
    .
    Thanks in advance for all
    I can get something to work but it is horrible (hopefully the Daddy will take a look at this thread and show us how to do it!):

    Assume data in A1:A10

    in B1 use formula:

    =MODE(COUNTIF(A1:A10,A1:A10))

    this gives the highest frequency

    in B2 use this formula:

    =SUMPRODUCT(--(COUNTIF(A1:A10,A1:A10)=B1))/B1


    this gives the numer of instances of names in column A with the Mode as calculated in B1

    Then in C1 copied down a few rows:

    =IF(ROWS($A$1:$A1)>$B$2,"",INDEX($A$1:$A$10,LARGE((FREQUENCY(MATCH($A$1:$A$10,$A$1:$A$10,0),MATCH($A$1:$A$10,$A$1:$A$10,0))=$B$1)*(ROW($A$1:$A$11)-ROW($A$1)+1),ROWS($A$1:$A1))))

    which is an array formula and so must be entered with Ctrl+Shift+Enter. Note that in the above, the red highlighted ROW() range is not a typo - it needs to be one greater in size than the actual data range.

    Richard

  10. #10
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980
    I think at that point a UDF might be in order! (subject of course to Daddy's intervention!)

  11. #11
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264
    Quote Originally Posted by romperstomper View Post
    I think at that point a UDF might be in order!
    Sigh. You're such a code junkie...

  12. #12
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980
    Which is easier to recognize when you come back to it in 6 months - your formula or =MAXLIST(A1:A10)?

  13. #13
    Valued Forum Contributor Richard Schollar's Avatar
    Join Date
    05-23-2006
    Location
    Hampshire UK
    MS-Off Ver
    Excel 2002
    Posts
    1,264
    Well if you're going to confuse the issue with logic and common sense...


  14. #14
    Valued Forum Contributor
    Join Date
    11-11-2008
    Location
    Euro
    MS-Off Ver
    2007, 2010
    Posts
    470
    Quote Originally Posted by RichardSchollar View Post
    I can get something to work but it is horrible (hopefully the Daddy will take a look at this thread and show us how to do it!):

    Assume data in A1:A10

    in B1 use formula:

    =MODE(COUNTIF(A1:A10,A1:A10))

    this gives the highest frequency

    in B2 use this formula:

    =SUMPRODUCT(--(COUNTIF(A1:A10,A1:A10)=B1))/B1


    this gives the numer of instances of names in column A with the Mode as calculated in B1

    Then in C1 copied down a few rows:

    =IF(ROWS($A$1:$A1)>$B$2,"",INDEX($A$1:$A$10,LARGE((FREQUENCY(MATCH($A$1:$A$10,$A$1:$A$10,0),MATCH($A$1:$A$10,$A$1:$A$10,0))=$B$1)*(ROW($A$1:$A$11)-ROW($A$1)+1),ROWS($A$1:$A1))))

    which is an array formula and so must be entered with Ctrl+Shift+Enter. Note that in the above, the red highlighted ROW() range is not a typo - it needs to be one greater in size than the actual data range.

    Richard
    A good respond,
    I think that we should define some names, it will be easier
    Last edited by tigertiger; 11-29-2008 at 01:30 PM. Reason: spelling

  15. #15
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    tiger i did put it in one cell i was using it to look at the range b1:b10
    and it did not work if had a bit missing see richards reply after my post

  16. #16
    Valued Forum Contributor
    Join Date
    11-11-2008
    Location
    Euro
    MS-Off Ver
    2007, 2010
    Posts
    470
    Quote Originally Posted by martindwilson View Post
    tiger i did put it in one cell i was using it to look at the range b1:b10
    and it did not work if had a bit missing see richards reply after my post
    OK, I had seen that post of richards ...
    What about richards...'s comment? have you try to do it?
    ?

  17. #17
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    your formula
    =INDEX(B16:B18,MATCH(MAX(COUNTIF(B16:B18,B16:B18)),COUNTIF(B16:B18,B16:B18)))
    richards correction
    =INDEX(B1:B10,MATCH(MAX(COUNTIF(B1:B10,B1:B10)),COUNTIF(B1:B10,B1:B10),0))
    Attached Files Attached Files
    Last edited by martindwilson; 11-29-2008 at 02:16 PM.

  18. #18
    Valued Forum Contributor
    Join Date
    11-11-2008
    Location
    Euro
    MS-Off Ver
    2007, 2010
    Posts
    470
    Quote Originally Posted by martindwilson View Post
    your formula
    =INDEX(B16:B18,MATCH(MAX(COUNTIF(B16:B18,B16:B18)),COUNTIF(B16:B18,B16:B18)))
    richards correction
    =INDEX(B1:B10,MATCH(MAX(COUNTIF(B1:B10,B1:B10)),COUNTIF(B1:B10,B1:B10),0))
    I see, tks you
    When we add the parameter (0) that mean Match find the exact information
    Last edited by tigertiger; 11-30-2008 at 01:52 AM.

  19. #19
    Registered User
    Join Date
    11-06-2008
    Location
    Australia
    Posts
    11
    Well thanks for all the replies i will have to look over them and see what works

    I did notice that there was an error about merged cells etc.. also im using a data list to display the names - would that cause any problems?

    But thanks again everyone i will try your suggestions and get back with what worked

    Brett

    Well i got it to work using richards correction above in martins post - thanks alot
    Last edited by Bretto75; 12-01-2008 at 07:25 PM. Reason: easier than wasting another post

  20. #20
    Registered User
    Join Date
    05-13-2009
    Location
    Pennsylvania, U.S.
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Most Frequent Text String

    For some reason I can't see my post to this thread or ContaminatedWitExcel's reply. I only know that he wrote something because I received an email about it. The formula I ended up using was

    {=INDEX(A3:A39,MODE(IF(A3:A39<>"",MATCH(A3:A39,A3:A39,0))))}

    However, I have directly below that data a new group of rows running from row 41 to 58. When I try to put that same formula in row 59 as

    {=INDEX(A41:A58,MODE(IF(A41:A58<>"",MATCH(A41:A58,A41:A58,0))))}

    I get #N/A in all of the cells. Why would this formula work on the first set of data but not the second?

  21. #21
    Registered User
    Join Date
    05-13-2009
    Location
    Pennsylvania, U.S.
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Most Frequent Text String

    FWIW, I can see my newly posted messages at the end of the thread after posting them, but after refreshing I can still only see the last message from last year.

  22. #22
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474

    Re: Most Frequent Text String

    Quote Originally Posted by Wrathchild View Post
    For some reason I can't see my post to this thread or ContaminatedWitExcel's reply. I only know that he wrote something because I received an email about it. The formula I ended up using was

    {=INDEX(A3:A39,MODE(IF(A3:A39<>"",MATCH(A3:A39,A3:A39,0))))}

    However, I have directly below that data a new group of rows running from row 41 to 58. When I try to put that same formula in row 59 as

    {=INDEX(A41:A58,MODE(IF(A41:A58<>"",MATCH(A41:A58,A41:A58,0))))}

    I get #N/A in all of the cells. Why would this formula work on the first set of data but not the second?
    Unless the data has one value occurring more than once, the formula will return #N/A. Is this the case?

  23. #23
    Registered User
    Join Date
    05-13-2009
    Location
    Pennsylvania, U.S.
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Most Frequent Text String

    Replying to Domenic (still can't see the messages):

    In reviewing the data that's exactly what is happening in those particular ranges. Thanks for pointing that out. I feel much better now.

  24. #24
    Registered User
    Join Date
    05-13-2009
    Location
    Pennsylvania, U.S.
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Most Frequent Text String

    Quote Originally Posted by Domenic View Post
    Unless the data has one value occurring more than once, the formula will return #N/A. Is this the case?
    You know, I've been using this formula all this time and it looks like it was tricking me. It appears that if more than one value have the same number of occurrences it will pick one of them as the result of the formula. Is this correct?

+ 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