concatenate with a format?

RGH

Board Regular
Joined
Dec 17, 2003
Messages
71
I'm trying to concatenate a cell that has a formula, with the text "of standard." The formula is a percent format that changes weekly and the text "of standard" is fixed.

However, when i write the concatenate formula, it drops the % format of the formula cell, so that what was 100.2% becomes 1.0002.

So basically,
This is the result i'm getting, "1.0002 of standard"
This is what I want "100.2% of standard"

Is there a way to get concatenate to use the format from the formula cell, or is there another way around this?

Rob
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
EDIT:

Might be better to leave it as a percent, so you can still interact with it. Try turning it back into a straight percentage, right clicking on the cell, and going to custom formatting and enter this:
Code:
0.00% "of standard"

Here is an excerpt form the help file that might be usefull:

Displaying both text and numbers To display both text and numbers in a cell, enclose the text characters in double quotation marks (" ") or precede a single character with a backslash (\). Include the characters in the appropriate section of the format codes. For example, type the format $0.00" Surplus";$-0.00" Shortage" to display a positive amount as "$125.74 Surplus" and a negative amount as "$-125.74 Shortage." The following characters are displayed without the use of quotation marks: $ - + / ( ) : ! ^ & ' (left single quotation mark) ' (right single quotation mark) ~ { } = < > and the space character.
 
Upvote 0
Rob

Try something like this

=TEXT(A1, "0.0%") &" of standard"
 
Upvote 0
Thanks Norie, I tried your formula and it worked. Thanks for the other replies too, I will try them out as well.

Rob

:-D
 
Upvote 0

Forum statistics

Threads
1,224,889
Messages
6,181,611
Members
453,057
Latest member
LE102024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top