Nested Formulas

G

GLENN ADAMS

I have 3 formulas that I need to put into a single function:

=SUBSTITUTE(A4,"-",".")
=SUBSTITUTE(A4,"A",11)
=SUBSTITUTE(A4,"B",12)

I want hyphens (-) to be recognized as decimals,
then I want "A" to be recognized as "11",
etc...
Any ideas?
 
C

Claus Busch

Hi Glenn,

Am Fri, 10 Aug 2012 09:14:26 -0700 (PDT) schrieb GLENN ADAMS:
I have 3 formulas that I need to put into a single function:

=SUBSTITUTE(A4,"-",".")
=SUBSTITUTE(A4,"A",11)
=SUBSTITUTE(A4,"B",12)

try:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A4,"-","."),"A",11),"B",12)

Regards
Claus Busch
 
G

GLENN ADAMS

Hi Glenn,



Am Fri, 10 Aug 2012 09:14:26 -0700 (PDT) schrieb GLENN ADAMS:






try:

=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A4,"-","."),"A",11),"B",12)



Regards

Claus Busch

--

Win XP PRof SP2 / Vista Ultimate SP2

Office 2003 SP2 /2007 Ultimate SP2

Excellent!!! Right on the money. Have a Beer - you deserve it.
Glenn Adams
 

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