Excel Macro code to Convert Roman Numbers into Arabic Numbers

How to Convert Roman Numbers into Arabic Numbers 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 Convert Roman Numbers into Arabic Numbers
Sub convertToNumbers()
Dim rng As Range
Selection.Value = Selection.Value
For Each rng In Selection
If Not WorksheetFunction.IsNonText(rng) Then
rng.Value = WorksheetFunction.Arabic(rng)
End If
Next rng
End Sub

Convert Roman Numbers into Arabic Numbers with VBA Macro Code

Sometimes it’s really hard to understand Roman numbers as serial numbers. This code will help you to convert roman numbers into Arabic numbers.

RECENTLY UPLOADED EXCEL TEMPLATES

project-task-list

Project Task List

The Project task list templates demonstrate some of the many ways that you can track tasks using a spreadsheet. From …

Download Now
RACI-matrix

RACI matrix

RACI matrix (pronounced as “ray see”) is an acronym for Responsible, Accountable, Consulted, Informed. Mostly, a RACI chart or matrix …

Download Now
project-timeline

Project Timeline

A project timeline is create using charts linked to data tables, so that the chart update when you edit the …

Download Now
work-breakdown-structure

Work Breakdown Structure

A Work Breakdown Structure (WBS) describes the tasks or activities for a process or project plan. The most common method for …

Download Now
content-calendar

Content Calendar

If you are posting regularly on social media requires planning ahead. This content calendar is helpful. There are some useful …

Download Now
weekly-timecard-for-project

Weekly Timecard for Project

Are you looking for some low-cost software-based timecard solution? There are many electronic timecard systems out there, but if you …

Download Now