Text – String Functions

Text & String Functions Explained with Examples

Create Microsoft Scripting Runtime Reference

Microsoft Scripting Runtime Reference

Create Microsoft Scripting Runtime Library Reference. Here are the instructions to add reference before running below VBA macro code. Table of Contents: Objective Step by step instructions to add Microsoft Scripting Runtime Library reference Create FSO Object VBA FSO Auto List Members Enable VBA FSO Auto List Members Instructions to Run VBA Macro Code Other …

Create Microsoft Scripting Runtime Reference Read More »

VBA Loop Through XLAM Files in a Folder

VBA Loop Through XLAM Files in a Folder

VBA Loop Through xlam Files in a Folder using built-in Dir() function. In this tutorial we loop through a folder or directory and list all available .xlam files in a folder. Lets learn how to use Dir, Right and Len VBA functions in this tutorial. Table of Contents: Objective Example to find all .xlam files …

VBA Loop Through XLAM Files in a Folder Read More »

VBA Loop Through all XML Files in a Folder

VBA Loop Through all XML Files

VBA Loop Through all XML Files in a Folder using built-in Dir() function. In this tutorial we loop through a folder or directory and list all available .XML files in a folder. Lets learn how to use Dir, Right and Len VBA functions in this tutorial. Table of Contents: Objective Example to find all .XML …

VBA Loop Through all XML Files in a Folder Read More »

VBA Loop Through all CSV Files in a Folder

VBA Loop Through all CSV Files in a Folder

VBA Loop Through all CSV Files in a Folder using built-in Dir() function. In this tutorial we loop through a folder or directory and list all available .CSV files in a folder. Lets learn how to use Dir, Right and Len VBA functions in this tutorial. Table of Contents: Objective Example to find all .CSV …

VBA Loop Through all CSV Files in a Folder Read More »

VBA Loop Through PDF Files in a Folder

VBA Loop Through all PDF Files in a Folder in Excel

VBA Loop Through PDF Files in a Folder using built-in Dir() function. In this tutorial we loop through a folder or directory and list all available .PDF files in a folder. Lets learn how to use Dir, Right and Len VBA functions in this tutorial. Table of Contents: Objective Example to find all .PDF files …

VBA Loop Through PDF Files in a Folder Read More »

VBA Loop Through all XLS Files in a Folder

VBA Loop Through all xls Files in a folder

VBA Loop Through all xls Files in a Folder using built-in Dir() function. In this tutorial we loop through a folder or directory and list all available .xls files in a folder. Lets learn how to use Dir, Right and Len VBA functions in this tutorial. Table of Contents: Objective Example to find all .xls …

VBA Loop Through all XLS Files in a Folder Read More »

VBA Array Filter Function in Excel

VBA Array Filter function

VBA Array Filter Function in Excel. The filter function returns an array, which contains subset of string based on specified criteria. Table of Contents: Objective Syntax of VBA Filter Function in Excel Includes all filtered strings – case sensitive Extract all filtered strings – not a case sensitive Excludes or doesn’t contain filtered string – …

VBA Array Filter Function in Excel Read More »

VBA Multi-Dimensional Array in Excel

Multi - Dimensional Array

VBA Multi-Dimensional Array in Excel.The Multi-Dimensional Arrays uses more than two indexes(Subscripts). We can have up-to 60 dimensions in an array. Table of Contents: Overview Syntax of VBA Multi-Dimensional Array in Excel Example for VBA N-Dimensional Array in Excel Instructions to Run VBA Macro Code Other Useful Resources Syntax of the Multi-Dimensional Array Function Here …

VBA Multi-Dimensional Array in Excel Read More »

VBA Three Dimensional Array in Excel

Three - Dimensional Array

VBA Three Dimensional Array in Excel. The dimensional Array has three dimensions and uses three indexes(Subscripts). The three subscripts(indexes) are separated with comma symbol. For example one index represents the rows, second one represents the columns and third one represents the charts. We refer Excel worksheet or cube for 3 Dimensional arrays. Table of Contents: …

VBA Three Dimensional Array in Excel Read More »

VBA 2Dimensional Array in Excel

Two - Dimensional Array

VBA 2Dimensional Array in Excel. Two Dimensional Array has two dimensions and uses 2 Indexes. The two indexes are separated with comma symbol. For example one index represents the rows and other represents the columns. The 2 Dimensional array also called as rectangular array. We refer Excel worksheet or table for 2 Dimensional arrays. Table …

VBA 2Dimensional Array in Excel Read More »

VBA One-Dimensional Array in Excel

One - Dimensional Array

VBA One-Dimensional Array in Excel. The One(1)-Dimensional Array uses only one index(Subscript). The one-dimensional array consists of list of items of same data type. It consists of either single row or column data. We read values from an array or into an array using index value. The one dimensional array can be created in static …

VBA One-Dimensional Array in Excel Read More »

VBA Array IsArray Function in Excel

VBA Array IsArray function

VBA Array IsArray function in Excel checks whether the specified input variable is an array or not. It returns a boolean value. The specified input variable is an array then returns True, otherwise returns False. Let us examples in the following tutorial. Table of Contents: Objective Syntax of VBA IsArray Function in Excel Example1: VBA …

VBA Array IsArray Function in Excel Read More »

VBA Array UBound Function in Excel

VBA Array UBound function

VBA Array UBound Function in Excel. Let us see about VBA arrays Upper Bound or UBound function in Excel VBA. The UBound function represents the Upper Bound value of an array. It returns the highest subscript(Index) value of specified array. It helps to determine the existing an array end size. Table of Contents: Objective Syntax …

VBA Array UBound Function in Excel Read More »