Is there any way to get (row,column) coordinates of a table?
Example:
tbl1: tbl2:
+--------+--------+--------+ +------+-----------+---------+
| Name | ROW | COL | | ROW | COL_0 | COL_1 |
+--------+--------+--------+ +------+-----------+---------+
| VALUE1 | 0 | 0 | | 0 | OPEN | CLOSE |
| VALUE2 | 2 | 1 | | 1 | RIGHT | LEFT |
| VALUE3 | 1 | 0 | | 2 | OFFLINE | ONLINE |
+--------+--------+--------+ +------+-----------+---------+
The result should look like:
+--------+----------+
| Name | ROWCOL |
+--------+----------+
| VALUE1 | OPEN |
| VALUE2 | ONLINE |
| VALUE3 | RIGHT |
+--------+----------+
Thanks in advance!
This is an odd requirement but I believe this will work: