Application Object

 

The mother of all objects is Excel itself. We call it the Application object. The application object gives access to a lot of Excel related options.

WorksheetFunction

You can access almost any Excel function through the Application object.

1. For example, place a command button on your worksheet and add the following code line:

Range("A3").Value = Application.WorksheetFunction.Average(Range("A1:A2"))


When you click the command button on the worksheet, Excel VBA calculates the average of the values in Cell A1 and Cell A2 and places the result into cell A3.

WorksheetFunction

Note: instead of Application.WorksheetFunction.Average, you can also just use WorksheetFunction.Average.

There are many more worksheet functions you can use in Excel VBA. Want to see more?

1. Launch the Visual Basic Editor.

2. Type in: worksheetfunction.

3. A list will appear showing you all the worksheet functions available.

More Worksheet Functions

Did you find this information helpful? Show your appreciation, vote for us.

Go to Top: Application Object    |    Go to Next Section: Programming

More about the application object, Login to the right >>
100 easy to follow Excel VBA examples. Limited time-offer: $39.00 but only $29.00. Ends on 31 May.