Sanjida Ahmed, who graduated from Daffodil International University with a degree in Software Engineering, has worked with SOFTEKO since 2021. She has written over 100 articles on Excel & VBA and, since 2022, has worked as the Project Manager of the Excel Extension Development Project in the Software Development Department. Since starting this software development, she has established an outstanding workflow encompassing a full SDLC. She always tries to create a bridge between her skills and interests in Artificial Intelligence.
Method 1 - Checking for Substrings Open the Visual Basic Editor by pressing Alt + F11 or navigating to the Developer tab and clicking on Visual Basic. ...
Introduction to InStr Function in Excel VBA The InStr function in Excel VBA allows you to find the position of specific strings within a given text. ...
The Excel SUMIFS Function The SUMIFS function is used to find the sum of a range of values with given conditions. Generic Syntax: =SUMIFS(range1, ...
In this article, we will show you how to convert bulk text to numbers in Excel in 6 ways. Consider the following dataset of Product and Order IDs. ...
The generic syntax of transposing an Array with VBA is: WorksheetFunction.Transpose(Arg1) Arg1 = It is a required argument which is a range of cells ...
Let's use a List of Students with Their Obtained Marks. This dataset contains the ID, Name, and their corresponding Marks and Departments in columns B, C, D, ...
Method 1 - Using a VBA Macro to Insert Rows Based on the Cell Text Value in Excel To insert a new row based on the specific text value “Insert Above” in the ...
This is an overview. Below is the sample dataset. Method 1 - Delete Leading Numbers from String with Excel VBA Steps: Press Alt + ...
In this dataset, there are three categories: Fruit, Flower, and Food, each marked with a different color. Let's count the cells with a specific color, as shown ...
If there is a cell with #N/A, #VALUE, or #REF! value in the selected range in which you want to apply the SUM function, it will return #N/A. Method 1 - ...
In this article, we will show you how to use the INDEX-MATCH formula in Excel to generate multiple results. We'll use the following dataset containing ...
This article will show you how to use the VLOOKUP function with the SUM function to execute certain operations in Excel. Before diving into the methods, have a ...
The sample dataset is the Premier League Point Table of the 2012/13 Season. In the dataset, we have Manchester United as the Champion Team. But in cell B17, we ...
Consider the following dataset of students. In that dataset, there are two students who have the same first names but different surnames and obtained different ...
In this article, we will use a VBA macro to delete cells that contain either a string or numbers, as in the following gif. The VBA syntax to delete ...
Glad that we could help you. Don’t hesitate to ask if you have any more Excel related problems. Here, our experts will be happy to assist you.
Hi Jesse,
Thanks for your comment. Have you checked the method no. 2 (VBA Macro to Export Excel Contents with Specified Range to a Pipe Delimited Text File) of this article? I think that solves your problem.
Hi James, In some cases, Excel’s IsNumeric property doesn’t always produce the correct result in VBA. Could you please try If Cells(i, 1) = 103 Then instead of If IsNumeric(Cells(i, 1)) = 103 Then in your code?
Hello Maurice,
Really glad to help you out. Don’t hesitate to ask if you need any further assistance. Thanks.