To reverse the order, you'd change the <= to >=, and probably change the Order by for ABS to DESC.
SELECT MyTable.MyDate, MyTable.ABS, DCount("*","MyTable","[ABS]>=" & [ABS] & " AND [MyDate]=#" & [MyDate] & "#") AS Rank
FROM MyTable
GROUP BY MyTable.MyDate, MyTable.ABS...