+ Reply to Thread
Results 1 to 2 of 2

How To Use The Count Function Like This?

  1. #1
    Registered User
    Join Date
    09-08-2007
    Posts
    10

    Question How To Use The Count Function Like This?

    Hello,

    I have a question that I hope will be easy to resolve it has to do with the count function...

    we will use cells:

    D14
    E14
    F14
    G14

    J6
    K6
    L6

    what I want to do is:

    W's = WON
    L's = LOST
    T's = TIED

    Count the W’s In cells D14 , E14 , F14 and when there is a W in these cells, I want the W's to count as (2)two when they are in cells D14 , E14 , F14

    When there is a W in cell G14, I want that W to count as (1)one.

    AND

    the same for L's

    In cells D14 , E14 , F14 and when there is a L in these cells, I want the L's to count as (2)two when they are in cells D14 , E14 , F14

    When there is a L in cell G14, I want that L to count as (1)one.

    AND FINALLY

    the same for T's

    In cells D14 , E14 , F14 , G14 and when there is a T in these cells, I want the T's to count as half of (1)one (0.5) when they are in cells D14 , E14 , F14 AND G14


    The Formula's will go in cells J6 , K6 , L6

    J6 = WON
    K6 = LOST
    L6 = TIED

    I hope I'm explaing this right...

    Thank You in advance

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    J6: =COUNTIF(D14:F14,"W")*2 + COUNTIF(G14,"W")
    K6: =COUNTIF(D14:F14,"L")*2 + COUNTIF(G14,"L")
    L6: =COUNTIF(D14:G14,"T")*0.5

    rylo

+ 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