11-17-2005 10:15 AM - edited 11-17-2005 10:15 AM
and so on....
I just can't figure out how to loop this through to go through all possible combinations of the 5 sets. :((
Looking forward to your suggestions and help.
Thanks,
Mim
Message Edited by Mim on 11-17-2005 11:26 AM
11-17-2005 10:39 AM - edited 11-17-2005 10:39 AM
Take COLUMN A and autoindex it on the first (outside) loop:
For i = 0 to 4
Ax = A[i]
Pass Column B THROUGH the first FOR loop and autoindex it on the second loop:
For i = 0 to 4
Bx = B[i] // autoindexing will do this for you
Pass Column C THROUGH the first and second FOR loop and autoindex it on the third loop:
For i = 0 to 4
Cx = C[i] // autoindexing will do this for you
and so on:
For i = 0 to 4
Dx = D[i] // autoindexing will do this for you
For i = 0 to 4
Ex = E[i] // autoindexing will do this for you
Assemble Ax, Bx, Cx, Dx and Ex into a set and do with it what you want.
Message Edited by CoastalMaineBird on 11-17-2005 10:44 AM
Message Edited by CoastalMaineBird on 11-17-2005 10:45 AM
Blog for (mostly LabVIEW) programmers: Tips And Tricks
11-17-2005 11:28 AM