Excel Macro code to Multiply all the Values by a Number

How to Multiply all the Values by a Number in excel sheet through VBA Macro Code

To use VBA macro code in an Excel spreadsheet, you need to do the following:

  1. Open the Excel spreadsheet where you want to use the macro code.

  2. Press “Alt + F11” to open the VBA developer window.

  3. In the VBA developer window, click the “Insert” menu and select “Module” to create a new module.

  4. Paste the VBA macro code into the module window.

  5. To run the macro, click the “Run” button in the VBA developer window or press “F5” on your keyboard.

Alternatively, you can also create a button or a shortcut key to run the macro. To create a button, go to the “Developer” tab in the main Excel window and click the “Insert” button. Then select a button control and draw it on the worksheet. Right-click the button and select “Assign Macro” to assign the macro code to the button. To create a shortcut key, go to the “Macros” tab in the VBA developer window, select the macro from the list, and click the “Options” button. Then, enter a shortcut key in the “Shortcut key” field.

Note: If you are running the macro for the first time, you may need to enable macros in Excel by going to the “File” tab and selecting “Options.” Under the “Trust Center” settings, click the “Trust Center Settings” button and go to the “Macro Settings” tab. Select “Enable all macros” and click “OK.”

Copy Below VBA Macro Code for Multiply all the Values by a Number
Sub addNumber()
Dim rng As Range
Dim i As Integer
i = InputBox("Enter number to multiple", "Input Required")
For Each rng In Selection
If WorksheetFunction.IsNumber(rng) Then
rng.Value = rng + i
Else
End If
Next rng
End Sub

VBA Macro code to Multiply all the Values by a Number in EXCEL

Let’s you have a list of numbers and you want to multiply all the number with a particular. To use this code: Select that range of cells and run this code. It will first ask you for the number with whom you want to multiple and then instantly multiply all the numbers with it.

RECENTLY UPLOADED EXCEL TEMPLATES

Accounts-Receivable

Accounts Receivable

Accounts Receivable Template is ready-to-use template in Excel to manage customer invoices and payments. Just insert your company name at …

Download Now
traditional-vs-roth-ira

Traditional VS Roth IRA

If you are considering contributing to a Traditional Vs Roth IRA , you may have already heard that the main …

Download Now
Accounts-Payable

Accounts Payable

Accounts Payable Template is a ready-to-use template in Excel that helps you to easily record your payable invoices all in …

Download Now
bullet-journal

Bullet Journal

We recently discovered the world of bullet journaling and we are excited to see that the bullet journal system is …

Download Now
bubble-chart-timeline

Bubble Chart Timeline

If you wish to use drawing tools to create a timeline, there is no limit to what you can create …

Download Now
bubble-chart-timeline-vertical

Bubble Chart Timeline Vertical

If you wish to use drawing tools to create a timeline. There is no limit to what you can create …

Download Now