B
BobAchgill
I have 2 arrays with identical number or rows.
arrword() as string
arrnumber() as integer
How can I best sort both arrays together using the integer array as the
column to sort by in descending numerical order?
This is what I want to achieve:
1 alive
1 beginning
1 covered
4 along
6 all
13 of
17 earth
62 and
I tried putting the two arrays into a third single column string array and
used array.sort(ThirdArray) but got these not so good results. This does not
achieve my numberical sort requirement
This is not what I want:
1 alive
1 beginning
1 covered
13 of
17 earth
4 along
6 all
62 and
arrword() as string
arrnumber() as integer
How can I best sort both arrays together using the integer array as the
column to sort by in descending numerical order?
This is what I want to achieve:
1 alive
1 beginning
1 covered
4 along
6 all
13 of
17 earth
62 and
I tried putting the two arrays into a third single column string array and
used array.sort(ThirdArray) but got these not so good results. This does not
achieve my numberical sort requirement
This is not what I want:
1 alive
1 beginning
1 covered
13 of
17 earth
4 along
6 all
62 and