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.
Method 1 - Embed VBA to AutoFilter with Multiple Numeric Criteria on the Same Column Steps: Press Alt + F11 on your keyboard or go to the tab Developer ...
Sometimes due to technical issues AutoFilter gets hidden, or even though there is no filter applied, Excel shows that there is. In both cases, it can be ...
Once you've read these methods, you will learn how to import data from an Excel file into a Word file automatically after running VBA code and by simply ...
This is the sample dataset. Example 1 - Using VBA to Extract Unique Values into a Separate Column as an Array Steps: Press Alt + F11 ...
This is the sample dataset: Method 1 - Reference a Table Column by Header in Excel VBA Steps: Press Alt + F11 or go to the Developer tab-> ...
Consider the following dataset, which we'll use to showcase looping through rows in a table. Method 1 - Embed VBA to Loop through Each ...
Solution 1 - Workbooks Must Contain External Links to Enable Greyed Out Edit Links The Edit Link function is used to control links between different ...
Method 1 - Multiple Sheets In the following image, you can see that we have an Excel sheet named One. In the same workbook, we have another sheet ...
Scenario In the following image we have an email format in the Home sheet of our Excel workbook. There is another sheet named Info in our workbook that ...
Method 1 - Embed VBA to Hide the Formula of a Range in Excel Steps to Protect a Sheet: Go to the tab Review. Click Protect Sheet from the Protect ...
This is the sample dataset for illustration. We will extract a certain result residing in one column based on conditions from the other two columns. ...
Creating a Dropdown List from a Generic List in Excel In the dataset below, there are repeated values (Apple in B7 and B9) . Create a dropdown list ...
Suppose we have a huge dataset but we just want the data between two specific dates. Filtering a Pivot Table with VBA is an effective, quick, and safe method ...
The above image is the sample dataset. Method 1 - Embed VBA to Delete Time from Dates in a Column in Excel Remove time in Column D. ...
Method 1 – Embedding VBA to Create a Data Validation Drop-Down List Steps: Press Alt + F11 or go to the tab Developer -> Visual Basic to open Visual ...
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.