Concatenate with a %

Sundance_Kid

Board Regular
Joined
Sep 2, 2017
Messages
128
Office Version
  1. 365
Platform
  1. Windows
Hi, I am trying to concatenate a word with a % figure in brackets.

Basically in cell A2, I want to have a formula going =Concatenate("Discount", " ", A1) and in cell A1 I want to have 10%.

So that the output in cell A2 is Discount (10%).

Any idea how I could do this? The reason why I want the % in cell A1 is because it may change and there is a formula elsewhere in the file working off the discount.

Thanks
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
It really depends on what REALLY is in cell A1.
Is A1 a number that is formatted to show a percentage (i.e. if you chane the format to "General", it would show .10)?
Or is A1 a text entry (so the "%" is actually hard-coded in the cell entry)?
 
Upvote 0
Actually, I think this formula will work on either case:
Excel Formula:
=CONCATENATE("Discount (",TEXT(A1,"0%"),")")
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,747
Members
448,989
Latest member
mariah3

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