Md. Mehedi Hasan, with a BSc in Electrical & Electronic Engineering from Bangladesh University of Engineering and Technology, holds a crucial position as an Excel & VBA Content Developer at ExcelDemy. Driven by a deep passion for research and innovation, he actively immerses himself in Excel. In his role, Mehedi not only skillfully addresses complex challenges but also exhibits enthusiasm and expertise in gracefully navigating tough situations, emphasizing his steadfast commitment to consistently deliver exceptional and quality content. Apart from creating Excel tutorials, he is interested in Data Analysis with MS Excel, Verilog, Assembly, Arduino, MATLAB, Pspice, and HFSS.
Method 1 - Using VBA IsDate and CDate Functions for Date Format Validation Show how to take date-type data in any format with InputBox, convert it to date ...
Method 1 - Using VBA Application.CutCopyMode Property to Cancel Selection While Copying When you copy the values from some range in Excel with VBA and ...
Overview of Alpha and Beta in the Stock Market Alpha and Beta are two important measures used in finance to evaluate the performance of an investment compared ...
Method 1 - Applying VBA VLookup Function to Find Value from Another Workbook Without Opening It 1.1 Using VBA VLookup Function with Cells Property We ...
In this article we will demonstrate a step-by-step procedure to create a histogram using VBA code in Excel. What Is a Histogram? A histogram looks ...
The general formula to determine the upper control limit is: UCL = Average + (3*Standard Deviation) STEP 1- Enter Sample Data to calculate ...
When we work on any project, it’s very important to create a schedule for different tasks. A calendar for project management can help a lot in this case. Excel ...
STEP 1 - Create Dataset for Bar Chart with Multiple Categories Create a dataset for the bar chart that includes categories, sub-categories, and items in ...
Method 1 - Using the Advanced Excel Options to Create a Custom AutoFill List Create a dataset. Select the range to include in ...
Method 1 - Returning Date After Specific Months Using EDATE Formula We will show the basic use of the EDATE function. Our dataset includes the Date, Months to ...
Method 1 - Calculate Implied Volatility for Specific Call Option Price by Iteration Calculate the call option price using the Black Scholes Model formula. ...
Method 1 - Using INT, CEILING and MAX Functions to Scale Data In the first method, we have taken exam marks for a few students and will scale the ...
In this article, we will demonstrate 3 examples of how to create a popup reminder in Excel. We'll use the dataset below to illustrate our methods: ...
In this article, we will demonstrate the use of the ComboBox to get a selected item using VBA code. We can specify the items for the ComboBox directly in the ...
This is a real-time data table from the investing.com website. STEP 1 - Open the Visual Basic Editor Go to the Developer tab and select Visual ...
Thank you for your queries. Let’s change the code a bit. Use the following code to copy the data and paste it as values.
Afterward, you will see result like this.
Thank you so much for your observation. We will rectify and update this error soon. Thanks again for your concern.
Hi MIGUEL,
We are glad, you asked the questions. It’s quite easy to import data from separate sheets and save it as separate documents. Simply, use the following code in a new module of VBA. Only, you have to change the file directory to save the doc file.
After running the code, you will see the doc files created according to your dataset.
Hi Anna!
You wanted to say what will happen if we input the same word with Upper and Lower case. The fact is Excel counts Upper and Lower case characters as the same. So you won’t have any issues. Even then I am showing one way to make your data to proper format first. Then, use the formatted text in the required formula.
=PROPER(B5)