putting a quote in a cel as a result of a formula

  • Thread starter Thread starter kyrbi
  • Start date Start date
K

kyrbi

Hi is it possible to replace the nr 4 with a " in this formula?

I just want to put a " in the cel

Thanks!

=IF(D100<>0;(IF(L100=K100;"4";IF(L100<K100;"m";"k")));"")
 
Do you mean this?

=IF(D100<>0;(IF(L100=K100;"""";IF(L100<K100;"m";"k")));"")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Do you mean this?
=IF(D100<>0;(IF(L100=K100;"""";IF(L100<K100;"m";"k")));"")

--
Yes,

I mean this, but this is not working, the formula gives an error......
because of the 3 quotes......

Thanks
 
It is 4 quotes not 3.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Try this and see if it's what you want:

=IF(D104<>0,IF(L104=K104,CHAR(147),IF(L104<K104,"m","k")),"")

Also, you are using semi-colons in your IF statement when you should be
using commas.
 
Of course anyone that has semicolons as delimiter in the regional settings
would have to use that (all of continental Europe
for instance)
 
Thanks
using 4 quotes is the trick..... strange, how do you put 2 quotes?
 
6

--

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

Back
Top