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.
In Excel, the AVERAGEA function works to get the average value of any kind of given data type, whether numeric values or text or boolean, AVERAGEA counts all ...
Method 1 - Using Nested VLOOKUP in Excel to Extract Product Price Steps: Click on the cell that you want the Price of the ID (e.g. cell beside ID A101 in ...
Implementing VBA macro is the most effective, quickest, and safest method to run any operation in Excel. In this article, we will show you if the font color in ...
Using VBA code is an effective and intelligent way to deal with various tasks in Excel. In this article, you will learn how to use VBA Range based on the ...
Here's a quick overview of the function that can remove text based on how many characters you want to keep. Read on to learn all the methods you can use for ...
Method 1 - Convert Column Number to Letter in Excel Consider the following dataset which we will be using as our example to convert column number to letter by ...
Method 1 - VBA Macro to Delete Columns Based on Cell Value in Excel Steps: Press Alt + F11 on your keyboard or go to the tab Developer -> Visual Basic ...
In this article, we will demonstrate how to convert a column number to its corresponding column letter in Excel with VBA code using 3 methods: converting a ...
Generic Syntax The generic syntax to delete single or multiple columns in Excel using VBA is: Columns(column number/ column address).Delete We ...
VBA Range Object The Range object in VBA can contain a single cell, multiple cells, rows, or columns within the Excel worksheet. The hierarchy of ...
Here's an overview of VBA code that outputs errors. What Is the Subscript Out of Range Error in VBA? VBA Subscript out of range error occurs when ...
In this article, you learn how to apply Conditional Formatting based on the VLOOKUP function with 3 different criteria in Excel. How to Use Conditional ...
Method 1 - Using the VBA IsEmpty Function to Check If Cell Is Empty Steps: Press Alt + F11 on your keyboard or go to the tab Developer -> Visual ...
Method 1 - Using a VBA Macro to Compare Two Columns and Highlight the Differences in Excel This is the sample dataset. Steps: Press Alt + F11 or ...
We have 3 Excel files - File1, File2, and File3 - which we are going to merge into one sheet or in one workbook. Remember: The files you need to ...

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.