A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
When I run into the possibility of duplicate numbers for the RANK() function, I add or subtract a very small unique number in a helper column and base the RANK() function on those numbers instead.
In this example, I used column D as a helper column with the formula,
=$B2-(ROW()*10^-4)
... which equates to subtracting the row number * 0.0001 from the rating value in column B. You may want to play around with the actual math, but I hope that gives you the idea behind it. Fill B2 down as necessary.