Yes, but that is because the order you are thinking of is not a *logical* order. Say you have: 1 abc 2 def 3 efg and 1 efg 2 abc What order should efg appear at? What about abc, it is order 2 in the second example, but 1 in the first, the two merge but don't have the same order. What I would suggest is that you think of the logical order for display, something you can put in a proc sort. Alternatively have a look at the specifications, that should be your base, i.e. if the specs state: 1=abc, 2=def... then you can code that in and then merge the two sets of variables to that as you then have a predefined list. If you haven't got specs, well...
... View more