Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Corey B
 
Posts: n/a
Default Formulas with "Y" & "N" values


I am creating a performance chart for employees to fill
out. Below is an example of a set of questions they need
to complete, with a possible answer to each. My
spreadsheet is being designed to calculate a points system
on multiple categories

1. How many appointments did you have? "2"
2. How many new appointments did you set? "1"
3. Did you follow up with active client groups, not yet
rented? "Y"
4. Have you made collection calls to clients that owe
money? "N"
5. Have you reviewed and replied to all your emails? "Y"

I need a formula that will add up all the numeric answers,
but also add the value for each question that has a "Y"
or "N" possible ansewr. So question 3, answered "Y" may be
+3 towards the total. but question 5 may only be a +1
towards the total if answered "Y" or a -3 if "N"

please help!

Much Thanks!
Corey

  #2   Report Post  
James
 
Posts: n/a
Default

I'll assume you have your questions in column A, and your
answers (Y/N)in column B. In column C, use the formula =IF
(B1="Y",1,IF(B1="N",2)) then a "1" will be returned if
the answer is "Y" or a "2" if the answer is a "N". Then,
at the bottom of column C, simply add up the numbers.

Hope this helps.



-----Original Message-----

I am creating a performance chart for employees to fill
out. Below is an example of a set of questions they need
to complete, with a possible answer to each. My
spreadsheet is being designed to calculate a points

system
on multiple categories

1. How many appointments did you have? "2"
2. How many new appointments did you set? "1"
3. Did you follow up with active client groups, not yet
rented? "Y"
4. Have you made collection calls to clients that owe
money? "N"
5. Have you reviewed and replied to all your

emails? "Y"

I need a formula that will add up all the numeric

answers,
but also add the value for each question that has a "Y"
or "N" possible ansewr. So question 3, answered "Y" may

be
+3 towards the total. but question 5 may only be a +1
towards the total if answered "Y" or a -3 if "N"

please help!

Much Thanks!
Corey

.

  #3   Report Post  
Corey
 
Posts: n/a
Default

Thanks for the suggestion but it is not working for me. I
am adding up C2:C7, but I want to stay within the same row
when converting the "Y" or "N" to the value I set for it.
In other words this is how I want it to work...

C2 Y (value I set in formula = +1)
C3 3
C4 N (value I set in formula = -2)
C5 10
C6 Y (value I set in formula = +3)
C7 2
C8 17 (Total)

Any Ideas?

Corey
-----Original Message-----
I'll assume you have your questions in column A, and your
answers (Y/N)in column B. In column C, use the formula =IF
(B1="Y",1,IF(B1="N",2)) then a "1" will be returned if
the answer is "Y" or a "2" if the answer is a "N". Then,
at the bottom of column C, simply add up the numbers.

Hope this helps.



-----Original Message-----

I am creating a performance chart for employees to fill
out. Below is an example of a set of questions they need
to complete, with a possible answer to each. My
spreadsheet is being designed to calculate a points

system
on multiple categories

1. How many appointments did you have? "2"
2. How many new appointments did you set? "1"
3. Did you follow up with active client groups, not yet
rented? "Y"
4. Have you made collection calls to clients that owe
money? "N"
5. Have you reviewed and replied to all your

emails? "Y"

I need a formula that will add up all the numeric

answers,
but also add the value for each question that has a "Y"
or "N" possible ansewr. So question 3, answered "Y" may

be
+3 towards the total. but question 5 may only be a +1
towards the total if answered "Y" or a -3 if "N"

please help!

Much Thanks!
Corey

.

.

  #4   Report Post  
James
 
Posts: n/a
Default

Can you email me the spreadsheet (or an example)?


-----Original Message-----
Thanks for the suggestion but it is not working for me.

I
am adding up C2:C7, but I want to stay within the same

row
when converting the "Y" or "N" to the value I set for

it.
In other words this is how I want it to work...

C2 Y (value I set in formula = +1)
C3 3
C4 N (value I set in formula = -2)
C5 10
C6 Y (value I set in formula = +3)
C7 2
C8 17 (Total)

Any Ideas?

Corey
-----Original Message-----
I'll assume you have your questions in column A, and

your
answers (Y/N)in column B. In column C, use the formula

=IF
(B1="Y",1,IF(B1="N",2)) then a "1" will be returned if
the answer is "Y" or a "2" if the answer is a "N".

Then,
at the bottom of column C, simply add up the numbers.

Hope this helps.



-----Original Message-----

I am creating a performance chart for employees to

fill
out. Below is an example of a set of questions they

need
to complete, with a possible answer to each. My
spreadsheet is being designed to calculate a points

system
on multiple categories

1. How many appointments did you have? "2"
2. How many new appointments did you set? "1"
3. Did you follow up with active client groups, not

yet
rented? "Y"
4. Have you made collection calls to clients that owe
money? "N"
5. Have you reviewed and replied to all your

emails? "Y"

I need a formula that will add up all the numeric

answers,
but also add the value for each question that has

a "Y"
or "N" possible ansewr. So question 3, answered "Y"

may
be
+3 towards the total. but question 5 may only be a +1
towards the total if answered "Y" or a -3 if "N"

please help!

Much Thanks!
Corey

.

.

.

  #5   Report Post  
Corey
 
Posts: n/a
Default

Thanks, I was able to figure this out it. This is it...
=SUM(C17+C19)+IF(C18="Y",1)+IF(C18="N",-2)+IF(C20="Y",1)+IF
(C20="N",-2)+IF(C21="Y",1)+IF(C21="N",-2)+IF(C22="Y",1)+IF
(C22="N",-2)

-----Original Message-----
Can you email me the spreadsheet (or an example)?


-----Original Message-----
Thanks for the suggestion but it is not working for me.

I
am adding up C2:C7, but I want to stay within the same

row
when converting the "Y" or "N" to the value I set for

it.
In other words this is how I want it to work...

C2 Y (value I set in formula = +1)
C3 3
C4 N (value I set in formula = -2)
C5 10
C6 Y (value I set in formula = +3)
C7 2
C8 17 (Total)

Any Ideas?

Corey
-----Original Message-----
I'll assume you have your questions in column A, and

your
answers (Y/N)in column B. In column C, use the formula

=IF
(B1="Y",1,IF(B1="N",2)) then a "1" will be returned if
the answer is "Y" or a "2" if the answer is a "N".

Then,
at the bottom of column C, simply add up the numbers.

Hope this helps.



-----Original Message-----

I am creating a performance chart for employees to

fill
out. Below is an example of a set of questions they

need
to complete, with a possible answer to each. My
spreadsheet is being designed to calculate a points
system
on multiple categories

1. How many appointments did you have? "2"
2. How many new appointments did you set? "1"
3. Did you follow up with active client groups, not

yet
rented? "Y"
4. Have you made collection calls to clients that owe
money? "N"
5. Have you reviewed and replied to all your
emails? "Y"

I need a formula that will add up all the numeric
answers,
but also add the value for each question that has

a "Y"
or "N" possible ansewr. So question 3, answered "Y"

may
be
+3 towards the total. but question 5 may only be a +1
towards the total if answered "Y" or a -3 if "N"

please help!

Much Thanks!
Corey

.

.

.

.

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
fill formulas and values Jose Mourinho Excel Discussion (Misc queries) 1 January 4th 05 03:05 PM
delete values in several cells without deleting the formulas dranreb Excel Discussion (Misc queries) 4 December 9th 04 01:15 AM
How do I view formulas by values not by which cells they use to c. excelhelp Excel Discussion (Misc queries) 1 December 6th 04 12:30 AM
Spreadsheet is only showing formulas not the actual values John Excel Worksheet Functions 2 November 24th 04 07:13 PM
Why do formulas turn to values wen copying in Excel 2003... zyphyl Excel Worksheet Functions 1 November 6th 04 06:33 AM


All times are GMT +1. The time now is 06:40 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"