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.
Introduction to The TREND Function The TREND function calculates the values of a given set of X and Y variables and returns additional Y-values by ...
What Is the FORECAST Function in Excel? Description The FORECAST function is a Statistical function in Excel. It calculates or predicts a future value ...
In this article, you will learn about the AGGREGATE function in Excel. We will explore its uses, aggregate data, with multiple criteria, combine aggregate with ...
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 ...
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 ...
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 ...
To demonstrate our methods for removing strikethroughs from text in Excel, we'll use the following dataset: Method 1 - Using Keyboard Shortcut 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.