A.N.M. Mohaimen Shanto, a B.Sc. in Computer Science and Engineering from Daffodil International University, boasts two years of experience as a Project Manager at Exceldemy. He authored 90+ articles and led teams as a Team Leader, meticulously reviewing over a thousand articles. Currently, he focuses on enhancing article quality. His passion lies in Excel VBA, Data Science, and SEO, where he enjoys simplifying complex ideas to facilitate learning and growth. His journey mirrors Exceldemy's dedication to excellence and continuous learning.
The salespersons' dataset has their working region and selling products. We will create a data validation list for the Region and Product columns. ...
Our dataset contains the sales statements of a company. Using the dataset, we will create a drop-down list in Excel. Here is the overview of our dataset. ...
Problems with the Text and Number Formats in VLOOKUP If your lookup value and the column values are in a different format, it will cause an error. Consider ...
How to Create Graphs in Excel This is a sample dataset: Steps Select B4:C11. The Quick Analysis option will be displayed at the right ...
How to Insert Checkboxes in Excel Method 1 - Insert a Single Checkbox Steps Go to the Developer tab in the ribbon. If you don’t see the tab, you have to ...
In this article, we will discuss the possible reasons and solutions for relative cell references not working in Excel. What is Relative Cell Reference ...
In this tutorial, you will learn how to make a text bold in a string using Excel VBA, along with other related tasks. Example 1 - Bold the Whole Text ...
What Is AutoFill in Excel? Autofill is a built-in feature of Microsoft Excel that allows users to automatically fill the rest of the rows or columns ...
Method 1 - On Error Resume Next’ Statement to Hide Worksheets in Excel VBA This is a VBA code that will hide all the worksheets of your active workbook. ...
Below is a sample sheet named “Dataset” which we will use to illustrate how to duplicate a sheet multiple times and rename it in Excel using VBA. Build ...
We'll use the following source file "Source", saved in the .xlsm format. We'll use VBA code to copy a worksheet named "Dataset" to another workbook. ...
Method 1 - Combine CONCATENATE, IF, and ISBLANK Functions to Concatenate Multiple Cells Consider the following dataset. In column B, we have multiple ...
While working with Excel VBA, you will face a lot of runtime errors. It is very usual to get these problems. Over time, you will get more promising at ...
Method 1 - Using the DATE and WEEKDAY Functions to Convert Week Number to Date There are no straightforward functions to convert the week number to date in ...
Method 1 - Convert Multiple Columns into a Single Row with Formula You will find the dataset in the sheet named “Dataset”. Convert these columns to a ...

Thank You JUAN. Very glad to know that this article helped you.
Hello P MUMU,
We are glad to know that this article helped you to solve your problem. For more like this, make sure to check our other articles from ExcelDemy.
Hello Polina. Thanks for asking. Basically, you have to change the cell references here.
Suppose you have data in the following ranges:
1. N3:N13
2. P1:P19
3. AB13:AB20
4. CC10:CC20
Just use the following code:
Sub ConvertTextToNumber()
With Range(“N3:N13”)
.NumberFormat = “General”
.Value = .Value
End With
With Range(“P1:P19”)
.NumberFormat = “General”
.Value = .Value
End With
With Range(“AB13:AB20”)
.NumberFormat = “General”
.Value = .Value
End With
With Range(“CC10:CC20”)
.NumberFormat = “General”
.Value = .Value
End With
End Sub
There are various ways. But this is the simplest.
Hello HOWARD,
Thanks for asking this important question. Basically scenario summary will show the latest dataset in the current values column. As we changed the scenario by clicking OK.
Now, this is not a wonderful solution. But it may help you.
1. Copy the original dataset to a new sheet.
2. Then go to Scenario Manager
3. Now click Summary.
You will see the original data in Current Values.
Thank You.
Hey Luna, you can use VBA codes to solve your problem if these methods don’t work.
Read this article:
https://www.exceldemy.com/convert-text-to-number-excel-vba/