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

    Mar 30, 2022 · You call a Function procedure by using the function name, followed by the argument list in parentheses, in an expression. See the Call statement for specific information …

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

    Oct 29, 2021 · In addition to calling a function from your VBA code using a sub procedure, you can also call the function from within your Excel sheet. The functions that you have created …

  3. VBA Functions List

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

  4. 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

  5. Excel VBA Functions And Sub Procedures [With Examples]

    Apr 1, 2025 · In this tutorial, we will learn about Excel VBA functions, Sub procedures, and the difference between them: If you have just started learning to code in VBA, then you will …

  6. 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 …

  7. Writing and Using Functions in Excel Visual Basic

    There are two reasons that you might create a function: To help make code easier to write, read and maintain; or To supplement the list of built-in Excel functions. This tutorial will show how to …

  8. How To Write VBA Functions | GoSkills

    Use this helpful guide to Excel VBA functions for a solid introduction to one of Excel's most powerful tools.

  9. VBA Function Statement - Explained with Examples

    Sep 23, 2023 · In this blog post, we will explore the purpose, syntax, and examples of using the Function statement in VBA, along with important notes and remarks. By the end of this post, …

  10. 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, …