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

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

Oorang

Well-known Member
Joined
Mar 4, 2005
Messages
2,071
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

Norie

Well-known Member
Joined
Apr 28, 2004
Messages
76,367
Office Version
  1. 365
Platform
  1. Windows
Rob

Try something like this

=TEXT(A1, "0.0%") &" of standard"
 
Upvote 0

RGH

Board Regular
Joined
Dec 17, 2003
Messages
71
Thanks Norie, I tried your formula and it worked. Thanks for the other replies too, I will try them out as well.

Rob

:biggrin:
 
Upvote 0

Forum statistics

Threads
1,195,683
Messages
6,011,141
Members
441,587
Latest member
kbsgiri09

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
Top