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.
What Is the Intraclass Correlation Coefficient? The Intraclass Correlation Coefficient (ICC) determines the reliability of ratings for multiple items. ...
Consider the following image of a word file. The file “Student Information” is stored at C:\ExcelDemy\. Use a VBA code to open it and then save it as a ...
We have the following dataset. The contents of the dataset are relatively irrelevant to the code we'll use. Method 1 - Macro to Transfer Contents ...
The sample Text file named “Test File” contains random lines and Line breaks. We will learn how to convert this text file to a new Excel file with the same ...
Consider the following dataset. We have 3 Products named Cricket Ball, Football, and Tennis Ball, and their Sales value across 3 months, January, February, and ...
Method 1 - Embed VBA to Split a String into Multiple Columns in Excel We have one long string, John Cena,23/04/1977,Wrestler,USA in a worksheet named “String” ...
This is the sample dataset. Example 1. Embed VBA to Hide Rows Based on Cell Text Value in Excel To hide the row that contains the word ...
Method 1 - Embed VBA to Hide a Single Row in Excel Steps: Press Alt + F11 on your keyboard or go to the tab Developer -> Visual Basic to open Visual ...
Method 1 - Embed VBA Macro to Generate Multiple Lines in Email Body in Excel Steps: Press Alt + F11 on your keyboard or go to the tab Developer -> ...
Method 1 - The Data Analysis Tool as a Random Number Generator in Excel Steps: Go to the tab Data -> Data Analysis. From the Data Analysis ...
Introduction to Forecast Accuracy Forecast Accuracy is the deviation between the forecast demand and the actual demand. It is also called ...
Method 1 - Using a VBA IF Statement with Multiple Conditions: IF with OR Consider the following macro. Sub IfWithOr() If 5 < 10 Or 10 < 5 Then ...
Method 1 - Embed VBA to Add Hyperlink from a Different Worksheet to a Cell Value in the Active Sheet Let’s consider the following dataset: In our workbook, we ...
1. Sorting in Excel Sorting is the process of arranging data in a particular order. 1.1. Sorting Methods You can: Sort text data in alphabetical order. ...
We have an Excel workbook consisting of three worksheets. The first worksheet is Sheet 1, and the data is shown in the picture below. The second ...
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.