Now ive got my array sorted i wana be able to loop it per row kinda thing, A: is this possible, B: how ?

My current code is this

VB Code:
  1. For Each Item In CusArray
  2.                     MsgBox(Item,1)
  3. Next
it returns all the subscripts of the array and i get index out of range message all i want to be able to do is count how many indexes there are in the array and loop the indexes accordly