number format when concatenating

glad_ir

Board Regular
Joined
Nov 22, 2020
Messages
145
Office Version
  1. 2010
Platform
  1. Windows
Hello,

I wonder if somebody can help me with this one please.

I would like to combine a % value from one cell with text in a second cell but % is being converted to decimal - e.g.

cell A1 = 50%
I would like cell A2 to return "50% reduction in cost". I am using the formula below but this is giving me "0.5 reduction in cost". Is there a way to specify %?

Excel Formula:
="A1"&" reduction in cost"

Any help much appreciated!

thanks,
Iain
 

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.
Formulas only look at values, not formatting. So you have to include it in the formula by using the TEXT function, i.e.
Excel Formula:
=TEXT(A1,"0%") &" reduction in cost"
 
Upvote 0
Solution
How about
Excel Formula:
=TEXT(A1,"0%")&" reduction in cost"
 
Upvote 0
wow! that was quick. Thank you All - much appreciated
 
Upvote 0
Formulas only look at values, not formatting. So you have to include it in the formula by using the TEXT function, i.e.
Excel Formula:
=TEXT(A1,"0%") &" reduction in cost"
thank you for the explanation as well - very helpfiul
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,217,231
Messages
6,135,375
Members
449,927
Latest member
AznLife

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