How to Add a Number to an Existing Cell Value in Excel

Method 1 – Using the Simple Formula

Steps:

  • Select the cell where we will keep the updated value. In our case, cell E5. The entire column called New Salary will keep the updated values.

  • Enter the following formula in cell E5:
=C5+100

Easy Methods to Add Number to Existing Cell Value in Excel

  • Press Enter.
  • As a result, we will see that E5 contains a $5,100 cell value, which is an increment of $100 of C5.

  • Select E5 and drag the Fill Handle till E10 to complete the whole series.

  • We will get the New Salary column with updated values.

Easy Methods to Add Number to Existing Cell Value in Excel

Read More: How to Add Digits to a Number in Excel


Method 2 – Using the Paste Special Option

Steps:

  • Enter 100 anywhere on the worksheet. In our case, we have chosen cell F5.

  • Press Ctrl + C and select from E5 to E10 where we want to add the number.

Easy Methods to Add Number to Existing Cell Value in Excel

  • Select Paste Special from the paste options in the Home tab in the Ribbon.

Easy Methods to Add Number to Existing Cell Value in Excel

  • A dialog box will appear named Paste Special. Select Add and press Enter.

Easy Methods to Add Number to Existing Cell Value in Excel

  • All the values of the Salary column are updated and increased by $100.


Method 3 – Applying VBA Code

Steps:

  • Go to the Developer tab in the Ribbon and select Visual Basic. We can also do this by pressing Alt+F11.

  • Select Insert and click on Module.

  • Copy and paste the following code in the text area under the General section. We can change the number we want to add by manipulating Num = 100 code.
Sub add_n()
Dim w_s As Worksheet
Dim r_s As Range
Dim rng As Range
Dim number As Double
Dim m As Long
Dim n As Long
Dim l_a As Long
Dim l_rs As Long
Dim l_c As Long
Dim ar() As Variant
Set r_s = Selection
number = 100
For Each rng In r_s.Areas
  If rng.Count = 1 Then
     rng = rng + number
  Else
      l_rs = rng.Rows.Count
      l_c = rng.Columns.Count
      ar = rng
      For m = 1 To l_rs
         For n = 1 To l_c
            ar(m, n) = ar(m, n) + number
         Next n
      Next m
      rng.Value = ar
  End If
Next rng
End Sub

  • Save the Excel file as a Macro-enabled Excel file or with XLSM extension by pressing Ctrl+S and then choosing XLSM as the file type.

  • Select the cell E5-E10 where we want to add the number and then click on Macros in the Developer tab.

  • A dialog box named Macro will appear. Select Add-num and then click on Run.

Easy Methods to Add Number to Existing Cell Value in Excel

  • All the values of the Salary column are updated and increased by $100.


Add Text to an Existing Cell Value in Excel

Steps:

  • Select cell E5.

  • Click on the Function icon.

  • A dialog box named Insert Function will appear. Search for the CONCATENATE function and press Enter to insert it.

Add Text to Existing Cell Value in Excel

  • Select B5 for Text1.

Add Text to Existing Cell Value in Excel

  • For Text2, enter A and then press Enter.

Add Text to Existing Cell Value in Excel

  • 1A is in the E5 cell.

  • Fill other cells by dragging the Fill Handle.

Add Text to Existing Cell Value in Excel


Download the Practice Workbook

You can download the practice workbook from here.


Things to Remember

  • Paste Special is the most suitable feature to add numbers to a whole column or selection.
  • VBA code and Paste Special can work on multiple columns.
  • The Developer tab needs to be activated while applying the VBA.

Related Articles


<< Go Back to Add to Cell Value | Sum in Excel | Calculate in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Nasir Muhammad Munim
Nasir Muhammad Munim

Nasir Muhammad Munim has been an Excel and VBA Content Developer for over a year in Exceldemy and published more than 30 articles for the website. He is passionate about exploring new aspects of Excel and VBA. He received his Bachelor of Science in Electrical and Electronic Engineering from the Islamic University of Technology. Apart from creating Excel tutorials, he is interested in developing PostgreSQL, MySQL, and Android applications. He is fascinated by CAD-based designing systems and building... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo