To Bob(regarding drop downs)- Pls reply

  • Thread starter Thread starter Dharsh
  • Start date Start date
D

Dharsh

Thanks sooooo much for the prompt reply Bob.
I am not sure how I'd modify this to apply it to my
spread sheet.I'd really appreciate it if you could reply
to this one as well.

Say in Column B i have a couple of L and a couple of Ms
(first 4 rows). So when I add it up , it should give me
(1+1+2+2)=6. How will I change the equation you just gave
me to apply it to this column and rows?

Thanks in anticipation
 
Here is one way for B2:B100, use

=SUMPRODUCT(((B2:B100="L")*1)+(B2:B100="M")*2+(B2:B100="H")*3)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
.... or more simply

=SUMPRODUCT(((B2:B100={"L","M","H"})*{1,2,3}))

--

HTH

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

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

Similar Threads


Back
Top