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

    You identify the elements in an array of Variant values by index, no matter which technique you use to create the array. For example, the following statement can be added to either of the preceding …

  2. VBA - Arrays - Automate Excel

    Jan 13, 2022 · In this Article VBA-Array-Schnellübersicht Arrays VBA – Array-Schnellbeispiele Vorteile eines Arrays? – Schnelligkeit! Erstellen / Deklarieren eines Arrays (Dim) Statisches Array …

  3. VBA Arrays in Excel - GeeksforGeeks

    Jan 14, 2026 · Arrays in VBA store multiple values of the same data type, making it efficient to handle large datasets in Excel. For example, instead of declaring 300 variables for student scores, you can …

  4. Array function (Visual Basic for Applications) | Microsoft Learn

    Sep 13, 2021 · Debug.Print "A(" & i & ") = " & A(i) Next i The lower bound of an array created by using the Array function is determined by the lower bound specified with the Option Base statement, unless …

  5. Visual Basic macro examples for working with arrays

    Visual Basic macro examples for working with arrays Summary This article contains sample Microsoft Visual Basic for Applications procedures that you can use to work with several types of arrays. More …

  6. Excel VBA - Complete Tutorial

    VBA (Visual Basic for Applications) is the programming language of Excel. If you're an Excel VBA beginner, these 16 chapters are a great way to start. Excel VBA is easy and fun! With Excel VBA you …

  7. VBA Arrays | How to Use Excel VBA Arrays with examples? - EDUCBA

    Apr 8, 2023 · Guide to VBA Arrays. Here we discussed types and how to use Excel VBA Arrays with some practical examples and downloadable excel template

  8. Excel VBAArray関数|配列を作成する方法と注意点 - Qiita

    この記事ではArray関数の使い方と注意点について解説します。 他のよく使うVBA関数一覧はこちら。 Array関数の使い方と注意点 Array関数は、複数の値をまとめてVariant型の配列として返す関数で …

  9. 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. One-dimensional Array To create a one-dimensional …

  10. Guidelines and examples of array formulas - Microsoft Support

    The following examples show you how to create multi-cell and single-cell array formulas. Where possible, we’ve included examples with some of the dynamic array functions, as well as existing …