Make sure all items in a Collection equal the same thing
Hi Ryan
First I would test against the desired value ie. < Complere,
the I would use this loop:
For Each colItem In colSalesOrderStatus
If colItem < "Complete" Then
'Do something
Exit For
End If
Next
Regards,
Per
On 24 Sep., 00:20, RyanH wrote:
Is there another way to test if all item value in a Collection or Array are
the same thing? *For example, I want to make sure that all items in the
Collection or Array = "Complete". *here is the code I use. *I was wondering
if I am doing this a long about way.
*For j = 1 To colSalesOrderStatus.Count - 1
* * *If colSalesOrderStatus(j) < colSalesOrderStatus(j + 1) Then
* * * * * 'do something
* * * * * Exit For
* * * End If
*Next j
--
Cheers,
Ryan
|