SQL Server uses pairs of single quotes to identify the start and end of a string. Inserting 'Mrs Brown's Boys' into a database table will fail since the three single quotes imply two strings, one of which is incomplete. An escape character is required for the apostrophe after Brown. This article explores the use of a customised VBA function to resolve this anomaly.
This article assumes the reader has the Developer ribbon displayed and is familiar with the VBA Editor. If not, please Google...
Read more »
If you would like to create an Outlook contact group from the list of contacts in an Excel file, you can use the 2 methods introduced in this article.
Some users are seeking a way to quickly create an Outlook contact group from an Excel file which contains a list of contacts. Of course, you can create such contact group manually. However, it is a bit troublesome. Hence, apart from the manual means, here we’ll additionally introduce another quick method which uses VBA.
Method 1: Create...
Read more »
If you would like to count the number of incoming emails on a specific date, or in a specific month or year, you can use the quick means introduced in this article. It will teach you how to use VBA to get it in a flash.
When it comes to counting how many emails received in specific date or periods, many are accustomed to using Outlook search folder, which permits us to gather all the emails incoming in the specific date or date range in a single search folder. Then we can use the “show total...
Read more »