Collections
In this blog post we will be discussing collections and how they can be used in VBA. Sub carParts() ‘A collection is an object that has the ability ‘to store other objects. ‘ ‘Collections have 4…
In this blog post we will be discussing collections and how they can be used in VBA. Sub carParts() ‘A collection is an object that has the ability ‘to store other objects. ‘ ‘Collections have 4…
In this blog post we will be expanding on the capabilities of arrays in VBA. One of the headaches with arrays is that they are static blocks of memory and are not designed to change in size. If we want…
In this blog post we introduce arrays and give you some examples of them in action. You can think of an array as a row of boxes with a number on each, 0 to n. When we first declare an…
In this blog post we will be examining Operators and how they can help you to construct if statements in VBA. An expression is a single or collection of variables and operators that ultimately evaluate to True or False. Here…
In this blog post we discuss the If…Then…Else statements that will allow you to add conditional logic to your posts. The Simple If Statement Sub standardExpressions() Dim a As Integer a = 10 If a = 10 Then Debug.Print “a…
In this blog post we will examine compilation and the effect it has on the code you write. Compilation is the act of converting our human readable code ( VBA) into code the computer understands. It may also be that…
In this blog post we take a look at some of the options available in the Visual Basic Editor (press ALT + F11 to open). VBA has a concise set of options and tools which you can set to change…
In this blog post we look at how you can use the immediate window whilst coding. The immediate window is a fantastic tool for testing and debugging code. Here are a few simple commands (open the immediate window and type…
In this blog post we will discuss debugging and provide you with some simple tips for debugging your code. In VBA when we write code, it often doesn’t work how we expect it to or we think it is working…
In this blog post we will create a custom function that returns someone’s age based upon their date of birth. To write a custom function we need to consider the following: A returned value is needed, so we must use…
In this blog post we cover some commonly used built-in functions that VBA coders need to know. String Functions Len(s) – returns the length of String s. Left(s, n) – returns a substring of s that is n chars long…
In this blog post we explain data types in VBA and provide detailed definitions for when they should be used. Firstly a word on VBA variable names; a variable may be named anything you wish as long as it conforms…
In this blog post we cover declaring variables, naming conventions, scope and constants. When writing code in V.B.A. we often need to do calculations based on values that can change. An example would be working out the area of a…
In this blog post we provide an analogy to help conceptualise objects, properties and methods and the way in which they interact. Most people tend to understand that if you want to change the text in a command button you…
In this blog post, we will be showing you how to convert a Macro into VBA code. A Macro is an object that includes a list of instructions, and these instructions translate to VBA code almost directly. Rather than writing…
In this blog post, we provide you with some basic tools for writing VBA code. The VBA Editor incorporates a number of useful features which help you whilst you are writing code. Here we’ll take a closer look at a…
In this blog post, we explain how the VBA editor works. There are four main areas of the editor that you need to know about. The Code Window The Code Window is where all your VBA code will be written.…
In this blog post, we will show you how to open the VBA editor. The above image is the VBA Editor with three areas highlighted; the Project Explorer, Code Window and Immediate Window. This is what is known as an…
In this post, we will be explaining the Macro Designer. Macros have a very concise builder. There is no need for formatters, physical dimensions or other fancies; a macro is a doing object that is invisible to the user except…
Form Object select button Form Header Form Detail Form Footer There are four main parts to any form. The Form Object select button selects the form window object. The header, detail and footer are all…
In this post, we will be providing you with some techniques for sorting and filtering records in a form. Just like a datasheet, we can alter the order of the records see. You can sort a form by clicking into…
In this post, we will be demonstrating how you can use the LIKE operator in queries. Being able to filter queries is an important part of effective data retrieval. Although we often want to find exact matching values, sometimes we…
In this post, we will be explaining the constituent parts of the query designer. To open the query designer navigate to the Create Tab of the Ribbon and click on the Query Design icon. In the image below we…
In this blog post we show you how to format a datasheet in MS Access. Although, generally, datasheets are boring grey forms that we can use to sort and filter data, we can actually format them to make their appearance…
In this post, we will be showing you how to sort and filter a record in Datasheet view. Access has an array of filtering and sorting tools which are accessible in the Sort & Filter group on the Ribbon …
In this post, we are going to show you how to delete a record in datasheet view. Open up a form in MS Access in datasheet view. Select the record you wish to delete by clicking in the circled…
In this post, we will be showing you how to add a record to a datasheet. Open up a form in datasheet view in MS Access. In the table below we have 3 fields – ItemID, Description and UnitPrice. What…
In this post, we introduce the concept of indexes in MS Access. Open up a table in design view. You should see the Ribbon below. Click on the indexes button. The dialog box that opens up shows us all the…
In this post, we demonstrate a couple of different ways to set the primary key in MS Access. A Primary Key is defined as “a unique key that can uniquely identify each row in a table”. The actual Key itself…
In this post, we explain what the different data types in MS Access mean. Here are a list of data types in MS Access. Text (2013 Short Text) A String 0 to 255 characters long. Memo (2013 Long Text) A…