Created
March 20, 2014 08:54
-
-
Save Bocom/9659790 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =INDEX( # Returns the content of a cell | |
| # Reference | |
| FILTER( # Returns a filtered version of the source range | |
| Legendaries!A:A, # Condition 1: All Legendaries | |
| Legendaries!B:B = A2 # Condition 2: The Name column matches the name in A2 | |
| ), | |
| #Row | |
| MATCH( # Returns the relative position of an item in a range | |
| # Search Key | |
| MAX( # Returns the maximum value in a numeric dataset | |
| COUNTIF( # Returns a conditional count across a range | |
| FILTER( | |
| Legendaries!A:A, | |
| Legendaries!B:B = A2 | |
| ), | |
| FILTER( | |
| Legendaries!A:A, | |
| Legendaries!B:B = A2 | |
| ) | |
| ) | |
| ), | |
| # Range | |
| COUNTIF( | |
| FILTER( | |
| Legendaries!A:A, | |
| Legendaries!B:B = A2 | |
| ), | |
| FILTER( | |
| Legendaries!A:A, | |
| Legendaries!B:B = A2 | |
| ) | |
| ), | |
| # Search Type | |
| 0 | |
| ) | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment