assigning numbers to text and count the text

J

Joerg Mochikun

Your postings are not clear. From your previous post:
hey is there a way to simplify the formula
=INDIRECT(B1)+INDIRECT(C1)+INDIRECT(D1) ????

Do you want to sum across a row B1:D1 or down a column B1:B200?

Anyway you dont need to use INDIRECT.
Since you have only 4 criteria (Yes for 1, No for 0, Sometimes for 0.5 and
Maybe for 0.25), you could use something like
=SUM(COUNTIF(B1:B200,"Yes"),COUNTIF(B1:B200,"Sometimes")*0.5,COUNTIF(B1:B200,"Maybe")*0.25)


Cheers

Joerg
 

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