In the query, there is a calculated field that has a number either a positive or negative number, possibly 0. What I need the query to do is arrange the data from the lowest number to the highest like
-66
-45
-30
0
34
45
61
61
(Yes there maybe duplicates, but within the duplicate, it does not matter which one comes first)
Now according to this I need a new field to rank like this
-66 1
-45 2
-30 3
0 4
34 5
45 6
61 7
61 8
If I can get this to work, the next thing is to have a field "Rank" in the table be updated by the rank assigned by the query.
I don't even know if this is possible but sure would make everything run easier and take out user error in assigning ranking.
-66
-45
-30
0
34
45
61
61
(Yes there maybe duplicates, but within the duplicate, it does not matter which one comes first)
Now according to this I need a new field to rank like this
-66 1
-45 2
-30 3
0 4
34 5
45 6
61 7
61 8
If I can get this to work, the next thing is to have a field "Rank" in the table be updated by the rank assigned by the query.
I don't even know if this is possible but sure would make everything run easier and take out user error in assigning ranking.