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.
PPMT Function in Excel to Calculate Principal The PPMT function calculates the principal of a financial product or service (e.g. total investments, loans, ...
What is the Moving Average? The Moving Average is the change in the average of a data series overtime. If you need to provide the moving average of the ...
In this article, we will show you how to customize row height in Excel with a VBA macro, including how to set new row heights, change row height for a single ...
In this article, we will discuss 14 different methods to hide rows in Excel based on different criteria utilizing the VBA macro. The sample dataset that we ...
In Excel, to merge multiple cells or ranges into one singular cell using VBA, the Range.Merge method is used. Range.Merge Method in Excel Purpose: ...
In this article, we present 9 different techniques and tricks to print an Excel sheet on one page. Method 1 - Adjusting the Column Width or Row Height We can ...
Method 1 - Applying VBA to Insert a Single Row Based on Cell Text Value in Excel Consider the following dataset. Steps: Press Alt + F11 or go to ...
Things to Know Before Implementing VBA to Sort a Table in Excel Before implementing VBA to sort a table in Excel, there are some parameters you need to be ...
Range.Sort Method in Excel VBA The Range.Sort method in Excel VBA allows you to sort a range of values. The Range object variable specifies the cells you want ...
Method 1 – Utilizing Trimmean to Calculate Average without Outliers Below, we have data from Cells B5 to B14. Most numbers are between 20 and 27, but two ...
We will use the sample dataset provided below to perform our custom filter. Method 1 - Filter Value Based on Number in Excel Steps: Select any ...
VBA Exp function is a built-in function in Excel, categorized under the Math and Trig function. In this article, we will show you what Exp function in VBA is ...
Method 1 - VBA to Format Numbers with Predefined Formats Below is the VBA code which covers all the predefined formats to Format numbers in Excel. The ...
Conditional statements are used to perform a set of actions depending on the specified condition in programming languages. In this article, we will show you ...
Implementing VBA macro is the most effective, quickest, and safest method to run any operation in Excel. In this article, we will show you how to refresh the ...

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.