I have a table like this
| Letter | Selected letter | Number |
|---|---|---|
| A | B | 1 |
| B | D | 2 |
| C | 3 | |
| D | 4 |
I'd like to have as a result:
| Selected letter | Number |
|---|---|
| B | 1 |
| D | 4 |
I tried to compare the two firsts columns to retrieve the third one with no luck.
I have a table like this
| Letter | Selected letter | Number |
|---|---|---|
| A | B | 1 |
| B | D | 2 |
| C | 3 | |
| D | 4 |
I'd like to have as a result:
| Selected letter | Number |
|---|---|
| B | 1 |
| D | 4 |
I tried to compare the two firsts columns to retrieve the third one with no luck.