Chris The Rock
Active Member
- Joined
- Feb 24, 2002
- Messages
- 287
I know the =LARGE() function finds the kth largest number in an array.
I need to build a formula that finds the kth largest number in an array - when the number ends with a specified digit.
Data like this:
11
51
31
21
41
would give the result 51, if I'm looking for numbers ending in 1.
This:
7
27
47
87
would return 87, if I want a number ending in 7.
Finally, data like this:
11
23
34
89
27
16
would return 16, if I'm searching for the largest number ending in 6.
I'd like to do this without writing a custom function in VBA.
Any suggestions?
I need to build a formula that finds the kth largest number in an array - when the number ends with a specified digit.
Data like this:
11
51
31
21
41
would give the result 51, if I'm looking for numbers ending in 1.
This:
7
27
47
87
would return 87, if I want a number ending in 7.
Finally, data like this:
11
23
34
89
27
16
would return 16, if I'm searching for the largest number ending in 6.
I'd like to do this without writing a custom function in VBA.
Any suggestions?
Last edited: