View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
MS-Exl-Learner MS-Exl-Learner is offline
external usenet poster
 
Posts: 132
Default Converting a letter to a numeric value

Assume that your €œYES€, €œNO€ and N/A values are in A Column from A1 to A100
and the marking text X in B column from B1 to B100.

Count Number of Yes From A1 to A100
=SUMPRODUCT((A1:A100="YES")*(B1:B100="X"))

Count Number of NO From A1 to A100
=SUMPRODUCT((A1:A100="NO")*(B1:B100="X"))

Count Number of N/A From A1 to A100
=SUMPRODUCT((A1:A100="N/A")*(B1:B100="X"))

To get all the above in one instance try the below one.
=SUMPRODUCT((A1:A100="YES")*(B1:B100="X"))&" YES -
"&SUMPRODUCT((A1:A100="NO")*(B1:B100="X"))&" NO -
"&SUMPRODUCT((A1:A100="N/A")*(B1:B100="X"))&" N/A"

Remember to Click Yes, if this post helps!

--------------------
(Ms-Exl-Learner)
--------------------


"Jcdc" wrote:

I have a spreadsheet where I need to tally the number of Yes, No and N/A
anwsers. How can I add them if the letter
"x" is being used to mark the answer?