How to Convert Percentage to Decimal in Excel: 7 Methods

Method 1 – Convert Percentage to Decimal Using the General Format

Steps:

  • Select Cell C5 to Cell C10.
  • From the Home tab, go to Number group.
  • Click on the arrow icon and choose General from the list.

Convert Percentage to Decimal Using the General Format in Excel

Look at the data set now.

Our data is converted into decimals from the percentage.


Method 2 – Apply Number Format to Convert Percentage to Decimal

Steps:

  • Select Cell C5 to C10 which contains percentage data.
  • Go to the Number group from the Home tab.
  • Choose Number from the Number Format options.

Number Format to Convert Percentage to Decimal in Excel

Look at the dataset again.

We get data in our desired decimal format.


Method 3 – Use the Custom Format Cells to Convert Percentage to Decimal

Steps:

  • Select Cells C5 to C10.
  • Click the arrow marked on the Number group.

Excel Custom Format Cells to Convert Percentage to Decimal

  • Go to the Custom option from the list of Number tab.
  • Select a suitable decimal format from the list, press OK.

Excel Custom Format Cells to Convert Percentage to Decimal

Notice the Growth Rate column of the dataset.

All percentage data are converted to decimal now.


Method 4 – Simple Copy-Paste Method to Convert Percentage to Decimal

Steps:

  • Go to Cell D5.
  • Press the right button of the mouse.
  • Choose Values(V) from the Paste Options.

Simple Excel Copy-Paste Method to Convert Percentage to Decimal

Look at the dataset.

In the new column, given percentage data are transformed into decimals now.


Method 5 – Apply Excel Paste Special Method to Convert Percentage

Steps:

  • Choose Cells C5 to C10 first.
  • Press Ctrl+C to copy them.
  • Go to Cell D5, and click the right button of the mouse.
  • Click Paste Special from the list.

Apply Excel Paste Special Method to Convert Percentage

  • The Paste Special window will appear. Choose Values from that window and then press OK.

Apply Excel Paste Special Method to Convert Percentage

Notice the Decimal Form column now.


Method 6 – Excel NUMBERVALUE Function to Convert Percentage to Decimal

Steps:

  • Go to Cell D5.
  • Write the following formula on that cell.
=NUMBERVALUE(C5)

Excel NUMBERVALUE Function to Convert Percentage to Decimal

  • Press the Enter button.

  • Pull the Fill Handle icon for the rest of the cells.

Excel NUMBERVALUE Function to Convert Percentage to Decimal

All the percentage data are converted into decimals now.


Method 7 – VBA Function to Convert Percentage to Decimal

Steps:

  • Go to the Record Macro option from the Developer tab.
  • Set the name of the macro and then press OK.

Excel VBA Function to Convert Percentage to Decimal

  • Click on the Macros command.
  • Select the macro and click on Step Into.

  • Write the following VBA code on the command module.
Function D_number(P_number As String) As Double
P_number = Left(P_number, Len(P_number))
D_number = Val(P_number) / 1
End Function

Excel VBA Function to Convert Percentage to Decimal

  • Save the code.
  • Go to Cell D5 of the dataset.
  • Put the formula below.
=D_number(C5)

Excel VBA Function to Convert Percentage to Decimal

  • Press the Enter button and drag the Fill Handle icon.


Things to Remember

  • We need a helper column while using the Paste tool and functions.
  • You can enter Format Cells by pressing Ctrl+1 also.
  • We do not need to run the VBA code, just save the code and apply the function on the dataset.

Download Practice Workbook

Download this practice workbook to exercise while you are reading this article.


Related Articles


<< Go Back to Change Number Format | Number Format | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Alok Paul
Alok Paul

Alok Paul has completed his B.Sc. in Electronics and Telecommunication Engineering from East West University. He has been working on the ExcelDemy project for more than 2 years. He has written 220+ articles and replied to numerous comments. He is experienced in Microsoft Office, especially in Excel. He also led some teams on Excel and VBA content development. He has a keen interest in Advanced Excel, Data analysis, Excel Pivot Table, Charts, and Dashboard. He loves to research... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo