I have the following table:
| ColumnA | ColumnB | ColumnC | ColumnD |
|---|---|---|---|
| 11 | AA | TEST | A1 |
| 12 | SA | ONLINE | B5 |
| 13 | YA | OFFLINE | N6 |
| 14 | QW | REPORT | LL |
| 15 | LO | DONE | HG |
I would like to print ColumnA and ColumnC such that, if columnA is 11 then it should print TEST. The output should look something like the following:
11 : TEST
12 : ONLINE
13 : OFFLINE
14 : REPORT
15 : DONE
How do I do that?