hello, i have one questions,
ccc is collection
aaa and bbb is array
I need separate array with condition and fill values that meet condition to array aaa and values that are not valid for condition fill to array bbb.
array is dynamic and randomly generated.
Please can anybody help me ?
Code:
condition = 50
For Each l In ccc
If l > condition Then
l = l
With aaa
.Add Item:=l
End With
Else:
l = l
With bbb
.Add Item:=l
End With
End If
Next
ccc is collection
aaa and bbb is array
I need separate array with condition and fill values that meet condition to array aaa and values that are not valid for condition fill to array bbb.
array is dynamic and randomly generated.
Please can anybody help me ?