如果我有3 row(或 n-row) number, e.g.
row1: 12 2 5 21 10
row2: 2 4 3 5 1
row3: 5 4 3 2 2
我想每一行的每一個number都assign 一個ranking 比佢.好像第一行那樣
如果我排ascending ordering ,應該是 2,5,10,12,21
我想做的是assign
一個"4" 比 第一行的12
一個"1" 比 第一行的2
一個"2" 比 第一行的5
一個"5" 比 第一行的21
一個"3" 比 第一行的10
用一個array 去載住d "4","1","2","5","3",讓我可以make use of this array to do other operations.
how can i use vba to achieve my goal?my difficulty is i dont know how to tell vba memorize the ordering EFFICIENTLY.
can anyone help?