convert text & multiply

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to create a function/formula which will count certain text in
a row and then convert them to a value and allow it to be multiplied by a
value?
 
Are these text values in one cell or are they spread out like

A1 B1 C1 D1 E1 F1 G1
E DO L OD E L DO

if so you could use

=SUMPRODUCT(--(A1:G1={"E";"L";"OD"}))*7.5
 
=(COUNTIF(A1:G1,"E")+COUNTIF(A1:G1,"L")+COUNTIF(A1:G1,"OD"))*7.5

Vaya con Dios,
Chuck, CABGx3


Boenerge said:
Is it possible to create a function/formula which will count certain text in
a row and then convert them to a value and allow it to be multiplied by a
value?
of these being 7.5 then multiplied by the amount of times they appear e.g.
5x7.5 = 37.5.
 

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

Back
Top