About 90,800 results
Open links in new tab
  1. Using arrays (VBA) | Microsoft Learn

    You can declare an array to work with a set of values of the same data type. An array is a single variable with many compartments to store values, while a typical variable has only one storage compartment …

  2. VBA Arrays - Automate Excel

    Mar 20, 2024 · So far, we’ve introduced you to the different types of arrays and taught you how to declare the arrays and get/set array values. Next we will focus on other necessary topics for working …

  3. Excel VBA Array - The Complete Guide - Excel Macro Mastery

    This post provides everything you need to know about the Excel VBA Array. Includes a quickVBA Array reference guide and 50+ VBA Array examples.

  4. VBA Arrays - Top 5 Types, Property, Declaration, Examples

    Guide to VBA arrays. Here we explain the top 5 types of VBA arrays along with its properties, declaration and examples.

  5. Excel VBA Array - A Detailed Guide on using Arrays in VBA

    If you want to work with large data using VBA, then you need to understand arrays and how to use them in VBA codes, and in this guide, you will be exploring all the aspects of the array and we will also see …

  6. VBA Arrays

    An array is a data structure which stores a set of sequentially indexed variables of the same data type in a contiguous block of memory. Arrays are used to store lists and tables of data.

  7. Array in Excel VBA - Step by Step Tutorial

    An array is a group of variables. In Excel VBA, you can refer to a specific variable (element) of an array by using the array name and the index number.

  8. Excel VBA Array and Array Methods With Examples - Software …

    Apr 1, 2025 · This tutorial will explain VBA Array, variuos array types, variant array and array methods with the help of programming examples.

  9. VBA Arrays - Excel Off The Grid

    Mar 28, 2020 · Compared with other programming languages, VBA seems to make arrays overly complicated. If you feel the same, then you’re in the right place. This post contains a lot of code …

  10. Excel VBA Arrays: What is, How to Use & Types of Arrays in VBA

    Jul 15, 2024 · Let’s say you want to store a list of your favourite beverages in a single variable, you can use VBA array to do that. By using an array, you can refer to the related values by the same name.