Tricky formula

G

Guest

I wondered if it was possible to display the results of two formulae in the
same cell by using concatenation...

Values in A1, A2, A3 are 1, 2, 3, respectively.

In another cell I have this formula: =A1/A2&" / "&A1/A3. The result is
"0.5 / 0.33333333333". Is there a way to format this display so it looks
like "0.50 / 0.33"?
 
C

Chip Pearson

Use the TEXT function to format your numbers as desired. E.g.,

=TEXT(A1/A2,"0.00")&" / "&TEXT(A1/A3,"0.00")

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
B

Bob Phillips

=TEXT(A1/A2,"0.00")&" / "&TEXT(A1/A3,"0.00")

--
HTH

Bob Phillips

(remove nothere from 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

matching cell formula 1
Combining Text From Cells 3
excel formula 1
Vlookup with If condition 1
Two functions in one formula. 1
Cell blank 4
cell display 2 4
How do I make this work? 15

Top