Convert % to Numbers

pgerardi

Board Regular
Joined
Aug 19, 2002
Messages
59
Hi I have a series of numbers for a chart that are all %s eg 55%. I need to change them to numbers where the result would be 55. If I do a format it comes out to .55. Is there format for this or do I have to do a calculation on each number to convert. Looking for a time saving way.

Thanks
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
You'll need to multiply the % value by 100 to convert 55% (0.55) to 55. And change the cell formatting unless you want it to display 5500%.
 
Upvote 0
Hi I have a series of numbers for a chart that are all %s eg 55%. I need to change them to numbers where the result would be 55. If I do a format it comes out to .55. Is there format for this or do I have to do a calculation on each number to convert. Looking for a time saving way.

Thanks

Let me see if I understand this correctly. You have a column of data that looks like this:
55%
50%
62%
etc.

And you want it to look like this?
55
50
62

If so, then copy & paste this formula into a blank column.
=A1*100

Change "A1" to whatever column that actually contains your data. Then fill down remainder of the column.
 
Last edited:
Upvote 0
Another option if you don't want to use a formula is:
• Put 100 in an empty Cell
• Hit Copy
• Select the cells with your % in them
• Paste > Special > Multiply

This will take the format from the cell with the 100 in it
for your % cells.
So if you want a set number of decimals or a certain negative value look then format that cell first, if you are happy with General then use that.
 
Upvote 0
Another option if you don't want to use a formula is:
• Put 100 in an empty Cell
• Hit Copy
• Select the cells with your % in them
• Paste > Special > Multiply

This will take the format from the cell with the 100 in it
for your % cells.
So if you want a set number of decimals or a certain negative value look then format that cell first, if you are happy with General then use that.

That's even better! I forgot about that option.
 
Upvote 0
@Burrgogi, so many options, so little time ;).
The choice often depends on how the data gets refreshed though. Pulling in the data from an Input sheet using something like your formula is better for automation, at least without also factoring in using VBA.
 
Upvote 0
Let me see if I understand this correctly. You have a column of data that looks like this:
55%
50%
62%
etc.

And you want it to look like this?
55
50
62

If so, then copy & paste this formula into a blank column.
=A1*100

Change "A1" to whatever column that actually contains your data. Then fill down remainder of the column.
Thanks so much! That's what I was looking for
Another option if you don't want to use a formula is:
• Put 100 in an empty Cell
• Hit Copy
• Select the cells with your % in them
• Paste > Special > Multiply

This will take the format from the cell with the 100 in it
for your % cells.
So if you want a set number of decimals or a certain negative value look then format that cell first, if you are happy with General then use that.
Perfect! Thanks so much, that is what I was looking for. Didn't want to use formulas.

Thanks again.
 
Upvote 0

Forum statistics

Threads
1,223,577
Messages
6,173,164
Members
452,504
Latest member
frankkeith2233

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