Question

Does any one know how to deal with tie records issue in Excel? I only want to show the record once on first occurrence. If same number is found twice, it will not show as I show above.

Was it helpful?

Solution 2

To get the results shown you can use this "array formula" in AA2

=IF(OR(Z2=0,COUNTIF(Z$2:Z2,Z2)>1),"",SUM(IF(FREQUENCY(IF(Z$2:Z$19>Z2,Z$2:Z$19),Z$2:Z$19),1))+1)

confirm with CTRL+SHIFT+ENTER and copy formula down column

see sample file

OTHER TIPS

The way I would produce the result you show in the linked image would be to have two columns for rank, 1 for the raw rank results, and one for the displayed ranks.

Assuming that your data starts in cell A2, and your raw ranking results begin in cell B2, you could insert the following formula in cell C2:

 =IF(ISERROR(MATCH(B2,B$1:B1,0)),B2,"")

Then, you would copy the formula down to the bottom row of your data.

Here's how this formula works. The MATCH function looks for the ranking shown in the current row of column B in the column B rows above that row. The MATCH function returns an error if there is no match, which in this case means that the current B cell has not already occurred. That's a ranking that you want to show.

If there's no error in the MATCH, there is the same ranking in the rows above - in that case, the formula returns an empty string.

Finally, you would hide column B, leaving columns A & C to be shown.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top