Sorting an Array : Array « Data Type « VBA / Excel / Access / Word

Home
VBA / Excel / Access / Word
1.Access
2.Application
3.Data Type
4.Data Type Functions
5.Date Functions
6.Excel
7.File Path
8.Forms
9.Language Basics
10.Math Functions
11.Outlook
12.PowerPoint
13.String Functions
14.Windows API
15.Word
16.XML
VBA / Excel / Access / Word » Data Type » Array 
Sorting an Array
 
   Option Explicit
   Option Base 1
 
   Sub Sort_an_Array()
       Dim strArray(12As String
       Dim strTemp As String
       Dim As Integer, Y As Integer, i As Integer

      strArray(1"n"
      strArray(2"d"
      strArray(3"h"
      strArray(4"g"
      strArray(5"e"
      strArray(6"d"
      strArray(7"o"
      strArray(8"p"
      strArray(9"m"
      strArray(10"h"
      strArray(11"b"
      strArray(12"m"

      Debug.Print "Current items in array:"
      For i = To UBound(strArray)
          Debug.Print strArray(i)
      Next i

      For X = LBound(strArrayTo (UBound(strArray1)
          For Y = (X + 1To UBound(strArray)
              If strArray(X> strArray(YThen
                  strTemp = strArray(X)
                  strArray(X= strArray(Y)
                  strArray(Y= strTemp
                  strTemp = ""
              End If
          Next Y
      Next X

      Debug.Print "Items in sorted array:"
      For i = To UBound(strArray)
          Debug.Print strArray(i)
      Next i
  End Sub

 
Related examples in the same category
1.Get the element in an array by index
2.Declaring a static array is similar to declaring a variable
3.Override the Option Base setting by specifically setting the lower bound in the array declaration
4.Declaring and Working with Fixed Arrays
5.Declaring array and setting bounds
6.Arrays are typically initialized inside a loop
7.Use the For Each...Next to assign value to an array
8.Use count function to count array
9.Use count function to sum array
10.Using a One-Dimensional Array
11.Define and use multidimensional array
12.Create an Array, assign value and use Loop to show its value
13.Use LBound and UBound in for statement
14.Using a Two-Dimensional Array and Reference its elements
15.Understanding Errors in Arrays
16.Function Parameter type: Array
17.Assign range to an array
18.Declaring a static array is similar to declaring a variable, with one small exception
19.To assume that 1 is the lower index for your arrays
20.Multidimensional arrays
21.Sorts the List array in ascending order
22.Searching through an Array
23.Fill array by using a nested For- Next loop.
24.Referencing Elements in a Multi-dimensional Array
25.Convert number to String by using Array
26.Specifying the Index Range of an Array
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.