About 559,000 results
Open links in new tab
  1. Function statement (VBA) | Microsoft Learn

    Mar 30, 2022 · This example uses the Function statement to declare the name, arguments, and code that form the body of a Function procedure. The last example uses hard-typed, initialized …

  2. VBA Function – Call, Return Value, & Parameters - Automate …

    Oct 29, 2021 · This tutorial will teach you to create and use functions with and without parameters in VBA VBA contains a large amount of built-in functions for you to use, but you are also able …

  3. VBA Functions Excel - Examples, How to Create Custom Function?

    Guide to VBA Functions. Here we explain how to create and access Excel VBA functions, with examples and downloadable excel template

  4. Function and Sub in Excel VBA - GeeksforGeeks

    Sep 11, 2025 · A function in VBA can be defined as a procedure that executes a piece of code or instructions and post-execution, it returns the value of the tasks performed. A function is hence …

  5. VBA Functions List

    Excel VBA Functions - List of Popular Built-In Functions in VBA with links to Descriptions and Examples of Use

  6. MS Excel: VBA Functions - Listed by Category - TechOnTheNet

    Learn how to use all Excel VBA functions used in Macros. Here are the VBA functions listed by their category. Choose one to get started:

  7. Visual Basic for Applications - Wikipedia

    Visual Basic for Applications (VBA) is an implementation of Microsoft 's event-driven programming language Visual Basic 6.0 built into most desktop Microsoft Office applications. Although …

  8. Writing a Function procedure (VBA) | Microsoft Learn

    Sep 13, 2021 · A Function procedure is a series of Visual Basic statements enclosed by the Function and End Function statements. A Function procedure is similar to a Sub procedure, …

  9. Writing and Using Functions in Excel Visual Basic

    When you choose Insert --> Procedure... from the VBA code editor menu, you can insert a Sub or a Function (the word Property is discussed in a later tutorial on classes). There are two …

  10. VBA - User Defined Functions - Online Tutorials Library

    The most common way to define a function in VBA is by using the Function keyword, followed by a unique function name and it may or may not carry a list of parameters and a statement with …