Parameter | Data Type | Description |
|---|---|---|
1 | Any* | The given list of texts. |
2 | Any | The name of the return column. |
Expression | Result |
|---|---|
List( "England", "Japan", "USA" ).Capital where a lookup table contains countries and their capitals | List( "London", "Tokyo", "Washington" ) |
List( "US of A" ).Capital where a lookup table contains an empty cell in the countries column with the text Unknown Capital City in the corresponding cell of the capitals column | List( "Unknown Capital City" ) |
Parameter | Data Type | Description |
|---|---|---|
1 | Any | The given text. |
2 | Any | The name of the return column. |
Expression | Result |
|---|---|
"England".Capital where a lookup table contains countries and their capitals | "London" |
"US of A".Capital where a lookup table contains an empty cell in the countries column with the text Unknown Capital City in the corresponding cell of the capitals column | "Unknown Capital City" |