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 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 ...
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 ...
In the below dataset, we have the same numbers in Columns B and C. Method 1 – Using VBA NumberFormat Property Steps: Press Alt + F11, or go to ...
Method 1 - Using a Formula to Link Two Worksheets in Excel There are two Excel sheets: Destination Sheet and Source Sheet. There is data in the ...
Method 1 - Format Cell Horizontally or Vertically with VBA Excel’s CellFormat. The AddIndent property sets a Variable type value that indicates whether the ...
Method 1 - WorksheetFunction with COUNTIF in Excel VBA Steps: Press Alt + F11 on your keyboard or go to the tab Developer -> Visual Basic to open ...
VBA Syntax to Remove Duplicates in Excel Generic Syntax Range.RemoveDuplicates(Columns, Header) Parameter Description Parameter ...
In the dataset, the same dates are in Columns B and C. We will format the date in Column C. Method 1 – Using VBA to Format Dates Steps: Press ...
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.