How to add values to multiple cells in Excel?
If you want to add a value to multiple cells in Excel, the following methods will help you process it easily and quickly:
Add Value to multiple cells with VBA
Using macros can ease many repeated processing, and make our work easier and faster. So does the following macro.
Step 1: Select the cells that you will add a value to.
Step 2: Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
Step 3: Click Insert > Module, and paste the following VBA in the Module Window.
Sub Add2Formula()
' Add 300
For Each c In Selection
c.Activate
ActiveCell.FormulaR1C1 = "= " & ActiveCell.Formula & "+300"
Next c
End Sub
Step 4: Press the F5 key to run this macro.
Notes:
1. This macro is only valid for cells containing no formulas within them.
2. This macro will add 300 to all selected cells. If you want to add other value, please replace the 300 with other value.
Add value to multiple cells with Kutools for Excel
Kutools for Excel provides us with an alternate easy-to-use method, and its Operation Tools can help us add value to multiple cells easily.
Kutools for Excel includes more than 80 handy Excel tools. Free to try with no limitation in 30 days. Get it Now.
Step 1: Select the cells that you will add the same value to.
Step 2: Click the Kutools > Operation > Operation Tools …. See screenshot:
Step 3: Select the Addition from Operation section, and enter the value you will add to selected cells. See screenshot:
Step 4: Check the Create formulas option.
Step 5: Click OK.
![]() |
In Operation Tools, |
![]() |
Kutools for Excel's Operation Tools supports all kinds of mathematical operation to all selected cells together:
- Addition: Plus a specified operand.
- Subtraction: Subtract specified operand.
- Multiplication: Each value of cells multiplied by the operand.
- Division: Each value of cells divided by the operand.
- Exponentiation: Each value of cell power the operand.
- Rounding: Round each value of cell to the decimal numbers (specified operand).
- Function: Applies a function to each value of cell.
- Custom: Create a formula-like expression and apply to each value of cell.
Related Article
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
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!









