I'm using split to break up an array and go through a loop :
ItemID = Split(ItemIDs, ",", -1, 0)
FOR m = LBound(ItemID) TO UBound(ItemID)
..... /// loop ///....
Next
I am doing another split inside the loop to create another loop and I am getting the error on theat line : "Invalid use of Null: 'Split'"
any idea what the problem could be ? both work independantly until i put one inside the other.
thanx
ItemID = Split(ItemIDs, ",", -1, 0)
FOR m = LBound(ItemID) TO UBound(ItemID)
..... /// loop ///....
Next
I am doing another split inside the loop to create another loop and I am getting the error on theat line : "Invalid use of Null: 'Split'"
any idea what the problem could be ? both work independantly until i put one inside the other.
thanx