#1   Report Post  
BIYB
 
Posts: n/a
Default Multiple Countif ?

I want to award point for certain daily activities

Say 1 point for having done a great job
say 0 points for having done a regular job
say -1 (minus 1) point for a bad job

IN a table I would use "G" for great, "R: for regular, and "B" for bad,
these would be inserted on a daily basis. Basically I want a running tally at
the end of the collum to see where each team member is at in terms of points.

Thank You
  #2   Report Post  
Dave O
 
Posts: n/a
Default

How is your data laid out in the spreadsheet? The layout will
determine the way to count the points. For instance: column A might
hold the person's name, column B the date, column C the activity, and
column D the great/regular/bad rating.

  #3   Report Post  
B. R.Ramachandran
 
Posts: n/a
Default

Hi,
Since the number of rows is expanding as you add new performance data on a
daily basis, you would be better off to have the running tally for each
member on the top of the column (rather than the bottom) for each member (I
guess members are listed column-wise).
If, for example A1, B1,C1, ...... contain Member 1, Member 2, Member 3,
......., then the running tallies may be in A2, B2, C2, ......., and the daily
performance data (such as G, R, or B) may start at row 3 (i.e., A3, B3, C3,
......)

The formula in A2 could be:

=SUMPRODUCT((A3:A1000="G")-(A3:A1000="B"))


Fill-in this formula across Row 3 to columns B, C, ......(for other members)
This formula would work with the grading criterion you have indicated (G=1,
R=0, and B=-1). If you decide to use a different criterion, the formula
should be modified accordingly. The following is a more general formula:

=SUMPRODUCT((A3:A1000="G")*1+(A3:A1000="R")*0+(A3: A1000="B")*(-1))

Here, the 1, 0, -1 after the *-sign in the formula can be changed to any
other grading criterion you may decide to use later.

Regards.
B.R. Ramachandran



"BIYB" wrote:

I want to award point for certain daily activities

Say 1 point for having done a great job
say 0 points for having done a regular job
say -1 (minus 1) point for a bad job

IN a table I would use "G" for great, "R: for regular, and "B" for bad,
these would be inserted on a daily basis. Basically I want a running tally at
the end of the collum to see where each team member is at in terms of points.

Thank You

  #4   Report Post  
BIYB
 
Posts: n/a
Default

Column A is the persons name, across the top (row 1) is the date.

Date July5 July6 July7 July8 etc Points
total
Name

Bob
Mike
Sam
ETC

Basically each person get a rating for each day "G", "R" and "B" (which has
a predetermids score associated to it, and the last column tallies the total
points.

"Dave O" wrote:

How is your data laid out in the spreadsheet? The layout will
determine the way to count the points. For instance: column A might
hold the person's name, column B the date, column C the activity, and
column D the great/regular/bad rating.


  #5   Report Post  
Bob Phillips
 
Posts: n/a
Default

Assuming the gradings are in B6:J8,

=COUNTIF(B6:J6,"G")-COUNTIF(B6:J6,"B")
etc.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"BIYB" wrote in message
...
Column A is the persons name, across the top (row 1) is the date.

Date July5 July6 July7 July8 etc

Points
total
Name

Bob
Mike
Sam
ETC

Basically each person get a rating for each day "G", "R" and "B" (which

has
a predetermids score associated to it, and the last column tallies the

total
points.

"Dave O" wrote:

How is your data laid out in the spreadsheet? The layout will
determine the way to count the points. For instance: column A might
hold the person's name, column B the date, column C the activity, and
column D the great/regular/bad rating.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using COUNTIF to check values in multiple columns DTomSimpson Excel Worksheet Functions 2 March 29th 05 04:47 AM
Countif formula with multiple criteria ie >30 and <60? Dali Excel Worksheet Functions 2 January 7th 05 04:49 PM
Countif with multiple criteria and multiple worksheets JJ Excel Worksheet Functions 1 December 28th 04 06:37 PM
"countif" from multiple worksheets within workbook Excel Discussion (Misc queries) 2 December 10th 04 06:59 PM
Countif & ranges consisting of multiple areas Jurry Excel Worksheet Functions 1 November 15th 04 09:03 AM


All times are GMT +1. The time now is 03:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"