multiply with - if text

  • Thread starter Thread starter potzo
  • Start date Start date
P

potzo

I have column E which is showing the curency - "$" and "€"
Column F is indicating the value in whichever curency is indicating E
J3 contains the value of a dollar
I3 contains the value of an euro
I want -cell C3 multiplied with E3 if the text in E3 is $ or multiplied
with i3 if text in E3 is €
or.... -cell C3 multiplied with E3 if the text in E3 is $ or
multiplied with i3 if text in E3 is not $

whichever is easier

Can anybody helpme with this, pls?
 
It seems to me that you want

=IF(E3="$",C3*J3,IF(E3="?",C3*I3,""))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
Bob said:
It seems to me that you want

=IF(E3="$",C3*J3,IF(E3="?",C3*I3,""))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

message



It works like this

Code:
 

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