How to Easy Divide a Section in Excel by Same Number
How to divide a range of cells by a number in Excel?
Sometimes, we may need to modify a range of cells in Excel quickly. For example, I have a range of cells which containing the prices of a group of products, and I want to divide all the prices by 2, and now here comes the question, how can I quickly divide a range of cells by a number?
Divide a range of cells by a number with Paste Special function
Divide a range of cells by a number with VBA code
Quickly divide a range of cells by a number with Kutools for Excel
Divide a range of cells by a number with Paste Special function
For example, I will divide all the cells by a number 15, using Paste Special function of Excel, you can accomplish this task with the following steps:
1. Insert the divisor number such as 15 into an empty cell and copy it.
2. Highlight the range that you want to divide all numbers by 15 and right-click, choose Paste Special from the menu.
3. In the Paste Special dialog box, click All option in the Paste section, select the Divide option in the Operation section, and finally click the OK button.
4. Delete the number 15 you have entered before.
Now the range of cells has been divided by 15 in bulk. See screenshot:
Divide a range of cells by a number with VBA code
With the VBA code, you can also divide a range cells by a number automatically.
1. Select the range you want it to be divided by a number.
2. Click Developer > Visual Basic, a new Microsoft Visual Basic for applications window will display, click Insert > Module, and then input the following code in the Module:
VBA: Divide a range of cells by a number.
Sub DivisionNum() 'Updateby20140128 Dim Rng As Range Dim WorkRng As Range Dim xNum As Integer On Error Resume Next xTitleId = "KutoolsforExcel" Set WorkRng = Application.Selection Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8) xNum = Application.InputBox("Division num", xTitleId, Type:=1) For Each Rng In WorkRng Rng.Value = Rng.Value / xNum Next End Sub
3. Then click button to run the code. In a popping up dialog box, please select the range with numbers you want to divide by a certain number, and then click the OK button. See screenshot:
4. In the second popping up dialog box, enter the divisor number, and then click the OK button. See screenshot:
Now all numbers in selected range are divided by number 15.
Quickly divide a range of cells by a number with Kutools for Excel
Perhaps the VBA code is somewhat difficult for you, is there an easy and quick method to deal with this work?
Before applying Kutools for Excel, please download and install it firstly.
1. Select the range with numbers you want to divide by a certain number. and then click Kutools > More > Operation, see screenshot:
3. In the Operation Tools dialog box, select Division in the Operation box, input the divisor number such as 15 in the Operand box. And you can see the results from the Preview Pane. And finally click the OK or Apply button. See screenshot:
Note: If you want to create formulas as well, please check Create formulas option. If the selected cells include formulas, and you don't want to divide the calculated results of the formula, please check Skip formula cells option.
If you want to have a free trial ( 30-day) of this utility, please click to download it, and then go to apply the operation according above steps.
Quickly divide a range of cells by a number with Kutools for Excel
Related articles:
- Change values in a cell range
- Add values to multiple cells
- Do exponential calculation to a range of cells
- Multiply a range cells by a number
- Round a range of cells
- Subtract a number from a range of cells in excel
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint , Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Source: https://www.extendoffice.com/documents/excel/691-excel-divide-a-range-of-cells-by-a-number.html
0 Response to "How to Easy Divide a Section in Excel by Same Number"
Post a Comment