displaying fractions in a concatenate formula

  • Thread starter Thread starter DavidObeid
  • Start date Start date
D

DavidObeid

If I have a formula that concatenates text and numbers, for example,
=concatenate("The average of ",A1," and ",A2," is = ",(A1+A2)/2) and I
want the formula to display the "(A1+A2)/2" part as a fraction. The
values in A1 and A2 will be integers.

Can this be done in a non-VBA way?

I'm using Excel 2003.

Thanks in advance,

Dave.
 
DavidObeid said:
If I have a formula that concatenates text and numbers, for example,
=concatenate("The average of ",A1," and ",A2," is = ",(A1+A2)/2) and I
want the formula to display the "(A1+A2)/2" part as a fraction. The
values in A1 and A2 will be integers.

Can this be done in a non-VBA way?

I'm using Excel 2003.

Thanks in advance,

Dave.
="The Average of"&A1&" "&A2&" "&"is= "&(a1+a2)/2
should work
notice the spaces
 
Thanks,

I tried it, but it didn't work.

Here is (exactly) what I got after entering 3 in A1 and 4 in A2:

"The Average of3 4 is= 3.5
 
Thanks again, but now I get this:

The Average of 3 and 4 is= 3.5

I'm still not getting the 3.5 to read as 3 1/2
 
Use
="The Average of "&A1&" and "&A2&" "&"is = "& TEXT((A1+A2)/2,"# ??/??")

You may want to use more ??? depending on what you want for the denominator.
 
="The Average of "&A1&" and "&A2&" "&"is= "&TEXT(((A1+A2)/2),"#?/?")
Okay I am getting closer I am now at 7/2
still working on the format
 
davesexcel said:
="The Average of "&A1&" and "&A2&" "&"is= "&TEXT(((A1+A2)/2),"#?/?")
Okay I am getting closer I am now at 7/2
still working on the format
Oh,
I see dave got it
 
Back
Top