iggydarsa
Well-known Member
- Joined
- Jun 28, 2005
- Messages
- 1,810
- Office Version
- 365
- Platform
- Windows
I have a table (tbl) with columns of Site and Sale
I want to Rank the Sales where Site is not blank.
On Column C (Rank) I using
but not sure how to exclude the Site where it is blank so that the resultset would be like Column D (Expected)
Thanks!
I want to Rank the Sales where Site is not blank.
On Column C (Rank) I using
Excel Formula:
=RANK.EQ([@Sale], [Sale], 1)
Site | Sale | Rank | Expected |
A | 10 | 1 | 1 |
C | 15 | 4 | 3 |
13 | 3 | ||
B | 12 | 2 | 2 |
D | 17 | 5 | 4 |
Thanks!