Adding Percentage sign but not changing format

gwlsf

New Member
Joined
Jun 29, 2010
Messages
12
Hey guys,

I have a cell that comes out 35.21 and would like to add a percentage sign to the end but keep it as 35.21 %. Whenever I try to format as a % it changes to 3521%. Any help is appreciated! Thanks!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
You will have to use another column for this. The new column will have the following formula and formatted as %.

=A2/100
 
Upvote 0
How Can I do this in VBA? I have the value 35.29 and I would like to only add a % sign at the end (35.29%). Thank you for any help!
 
Upvote 0
You can do it with a number format:

Code:
activecell.numberformat = "0.00\%"
for example.
 
Upvote 0

Forum statistics

Threads
1,213,529
Messages
6,114,155
Members
448,554
Latest member
Gleisner2

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