+ Reply to Thread
Results 1 to 4 of 4

Column of Text Shown = Total Times Shown?

Hybrid View

  1. #1
    Registered User
    Join Date
    07-19-2006
    Posts
    3

    Exclamation Column of Text Shown = Total Times Shown?

    Hello All,

    I am not too sure how to explain it so I will provide an example.

    Column C represents how many times that name was shown. Is there an easy way to do this or a simple formula? I appreciate the help

    A B C
    Phil Phil 3
    Phil Bob 2
    Phil Anne 4
    Bob John 2
    Bob
    Anne
    Anne
    Anne
    Anne
    John
    John


    Peace

    Phil C.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    I take it Col A is a list of names, Col is the name you wish to count and Col C is your Formula cell.

    If so add any of these formula's to C1

    =SUMPRODUCT(--($A$1:$A$11=B1))

    or

    =COUNTIF($A$1:$A$11,B1)

    Below is an array (Enter with Ctrl + Alt + Enter) just for info

    =SUM(IF($A$1:$A$11=B1,1,0))


    VBA Noob

  3. #3
    Registered User
    Join Date
    07-19-2006
    Posts
    3
    You rock!!!, that is exactly what I was looking for!!!

    Thanks!!!!!


    Quote Originally Posted by VBA Noob
    I take it Col A is a list of names, Col is the name you wish to count and Col C is your Formula cell.

    If so add any of these formula's to C1

    =SUMPRODUCT(--($A$1:$A$11=B1))

    or

    =COUNTIF($A$1:$A$11,B1)

    Below is an array (Enter with Ctrl + Alt + Enter) just for info

    =SUM(IF($A$1:$A$11=B1,1,0))


    VBA Noob

  4. #4
    Max
    Guest

    Re: Column of Text Shown = Total Times Shown?

    > Column C represents how many times that name was shown. Is there an
    > easy way to do this or a simple formula?


    With the list of unique names listed in B1 down
    In C1, copied down: =COUNTIF(A:A,B1)
    will return the indicated counts ..
    --
    Max
    Singapore
    http://savefile.com/projects/236895
    xdemechanik
    ---
    "philcassell" wrote:

    >
    > Hello All,
    >
    > I am not too sure how to explain it so I will provide an example.
    >
    > Column C represents how many times that name was shown. Is there an
    > easy way to do this or a simple formula? I appreciate the help
    >
    > A B C
    > Phil Phil 3
    > Phil Bob 2
    > Phil Anne 4
    > Bob John 2
    > Bob
    > Anne
    > Anne
    > Anne
    > Anne
    > John
    > John


+ 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