I agree.. I cannot use real data. but I discovered the problem I am having is related to the length of the data. The codes in the real data have different lengths... For example: KK109Y40,Y744P0,K444U7,H402O2,Y4449HH898O9,YY4930,TT785U983I9 So in this example, the lengths are 11, 6, 12, 6, 6, 7. So, if I leave the array like this "Array RejC{4} $ (&RejCode);" it will truncate the values to the length of the first one It reads. However, if I use the length of the longest values like this: Array RejC{4} $12 (&RejCode); it doesn't like it. But if I use $11 instead of the longest, then it works. Have you ever seen something like this? Any ideas?
... View more