Quantcast
Channel: Excel Macro Tutorials » Array Functions
Browsing latest articles
Browse All 7 View Live

VBA-Excel: Array Functions – Split()

Description:  Split() Function returns one dimensional array containing the substrings, after splitting the main string based upon the delimiter provided. Format: Split(strMainString [,...

View Article


VBA-Excel: Create Array using Array() Function

Description: You can create an array using Array() function. You need to provide all the elements which you want in an array inside Array() and store it in a variable and that variable will be...

View Article


VBA-Excel: Array Functions – LBound and UBound()

Description:  LBound and UBound() Functions returns the starting index ( Lower Bound) and Ending index (Upper Bound) of an array. Format: LBound(arrArrayName [, dimension]) UBound(arrArrayName [,...

View Article

VBA-Excel: Array Functions – IsArray()

Description:  IsArray() Function determines whether the specified variable is array or not and based upon that returns the Boolean value. Format: IsArray(varVariable) Arguments: varVariable Manda­tory...

View Article

VBA-Excel: Array Functions – Join() – Converts Array to String

Description:  Join () Function returns a String that consist of array elements separated by the delimiter provided. Format: Join(arrArrayName[,delimiter]) Arguments: arrArrayName Manda­tory Type: Array...

View Article


VBA-Excel: Array Functions – Filter()

Description:  Filter() Function returns one dimensional array containing the filtered array elements based upon the filter options provided Format: Filter(arrArrayName,FilterValue [, Include[,...

View Article

Excel-VBA : Math Functions – FORMAT()

Description: The FORMAT() function in MS excel takes a number and returns it as formatted string based on specified parameter. Format: VBA Function : FORMAT (number,[format]) Arguments: Number...

View Article
Browsing latest articles
Browse All 7 View Live