bakershawnm
Programmer
I have a good one here.
I have a view that gives me the following information:
Item, srccount, SrcFrmRef, SrcToRef, SrcTerm, DestFrmRef, DestToRef, Destcount.
The srccount is the count of wires going from SrcFrmRef to SrcToRef and the Destcount is the same on the other end. The SrcToRef and the DestFrmRef are the same part.
So sample data would look something like this:
ITEM A 2 Ref1 Ref2 VL Ref2 Ref3 1
The problem I am getting is that I also get the following data:
ITEM A 1 Ref3 Ref2 VL Ref2 Ref1 2
I have a source view that counts the wires on the source side and provides Ref1 and Ref2. I have a similar view for the destination that does the same thing providing Ref2 and Ref3. However there is nothing in the data that designates where the start actually is so both results are correct and valid information.
Is there a way to eliminate the reverse order data without doing a bunch of programming?
I have a view that gives me the following information:
Item, srccount, SrcFrmRef, SrcToRef, SrcTerm, DestFrmRef, DestToRef, Destcount.
The srccount is the count of wires going from SrcFrmRef to SrcToRef and the Destcount is the same on the other end. The SrcToRef and the DestFrmRef are the same part.
So sample data would look something like this:
ITEM A 2 Ref1 Ref2 VL Ref2 Ref3 1
The problem I am getting is that I also get the following data:
ITEM A 1 Ref3 Ref2 VL Ref2 Ref1 2
I have a source view that counts the wires on the source side and provides Ref1 and Ref2. I have a similar view for the destination that does the same thing providing Ref2 and Ref3. However there is nothing in the data that designates where the start actually is so both results are correct and valid information.
Is there a way to eliminate the reverse order data without doing a bunch of programming?