The custom sort in Excel is a very useful feature. In this article, we will talk about how to automatically update custom sort in a range by using the Excel VBA.
When you use the custom sort, you will find that this is an amazing feature in Excel. However, if you use this feature frequently, you may also find a problem. You will sort in a range with certain data and information. When you add additional data and information into the range, the order in the range will not change...
Read more »
Data theft can be minimised by disabling various menu and right-click features in Excel. We discuss below how to do this using VBA.
It is assumed the reader has the Excel Developer ribbon displayed, and is familiar with the VBA Editor.
The User Interface
Build a worksheet with two buttons and a little data.
This sheet will have its ribbon displayed, and all the right_click functionality that Excel affords.
The sheet is available here.
The VBA Code
There are a variety of...
Read more »
It is useful sometimes to read a worksheet line-by-line and selectively take data from it. An example below shows how to do this.
The article assumes the reader has the Developer ribbon displayed and is familiar with the VBA Editor. If not, please Google "Excel Developer Tab" or "Excel Code Window".
The following example manipulates the data by examining each row of email addresses and concatenating them into a single address line. While Excel has built-in Transpose functions, we intend...
Read more »