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 ArticleVBA-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 ArticleVBA-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 ArticleVBA-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 Mandatory...
View ArticleVBA-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 Mandatory Type: Array...
View ArticleVBA-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 ArticleExcel-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