User Posts: Sanjida Ahmed
Excel’s AutoFilter feature is really efficient to extract data based on certain conditions. Implementing VBA is the most effective, quickest, and safest method ...
Excel’s AutoFilter feature is really efficient to extract data based on certain conditions. But sometimes due to technical issues, AutoFilter gets hidden or ...
Implementing VBA is the most effective, quickest, and safest method to run any operation in Excel. In this article, we will show you 2 effective ways how to ...
Sometimes we want to extract unique values from the dataset of our Excel workbook; But when the dataset is huge, it is hard to find the values. Implementing ...
When we have a large dataset in our Excel workbook, sometimes it is convenient to reference a column of a table just by the name instead of the whole range. ...
When we have a large dataset in our Excel workbook, sometimes it is convenient if we can loop through rows to extract the specific results that we want to get. ...
The Edit Links and Change Source buttons are very effective tools to transfer and update large datasets with important links from one Excel sheet to another ...
Sometimes we need to modify our dataset for some reason. And when we are dealing with multiple worksheets and workbooks then this is really hard to get the job ...
Suppose you have a certain email format and a pile of contact details of people. You have to send an email with the specified format, meaning the header, body, ...
Sometimes we want to hide formulas for certain results to make any large worksheet less crowded. Implementing VBA is the most effective, quickest, and safest ...
When we have a large amount of data then sometimes it is hard to extract any specific data from the dataset. Together with Excel’s INDEX and MATCH functions ...
Dropdown lists are a very useful feature to perform various Excel related tasks. Implementing VBA is the most effective, quickest, and safest method to run any ...
A Pivot Table is a great tool to quickly summarize a large amount of data in Excel. Suppose you have a huge data consisting of so many dates but all you want ...
Sometimes there are data in an Excel worksheet that consists of both time and date. Occasionally, we want to get rid of only time or date from that sheet. ...
Data validation dropdown lists are a very useful feature to perform various Excel related tasks. Implementing VBA is the most effective, quickest, and safest ...
- « Previous Page
- 1
- 2
- 3
- 4
- …
- 9
- Next Page »
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.