How do I set up a formula to calculate a letter as a value

G

Guest

I am trying to set up a formula that will take a character entered such as
"N" and then get it to change the "N" in to a weighted percentage. So for
example if I asked a question and the person's choice for response is Yes,
No, NA and they selected No or N the next column would represent that N or No
as .15
 
G

Guest

Something using IF(LEFT(..), might suffice,
eg in C1:
=IF(LEFT(A1,1)="N",0.15*B1,"")
assuming A1 will contain either "No" or "NA"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top