Page 2 of 2

Re: about sort

PostPosted: Thu Nov 12, 2009 9:43 am
by pahi
Thanks Frank

Re: about sort

PostPosted: Thu Nov 12, 2009 10:50 am
by pahi
Hi,

Thanks and I understood the concept but i din't understood why PUSH=(61:ID=8) usage,
because i tried with PUSH=(61:ID=1) it worked fine for me. is there any specific reason for this usage.

Regards,
Pahi

Re: about sort

PostPosted: Thu Nov 12, 2009 10:32 pm
by Frank Yaeger
ID=1 specifies a length of 1 for the id. That would only allow for 9 groups, 1-9. The next group would be 0 (ID=10), then 1 again (ID=11) and so on. So the SORT on the id wouldn't work correctly. ID=8 specifies a length of 8 for the id. This would allow for 99999999 groups (1-99999999). If you have 9 groups or less, you could use ID=1. If you have more than 9 groups, you'll need a larger length for the ID.

Re: about sort

PostPosted: Mon Nov 16, 2009 12:22 pm
by pahi
Thanks Frank