Hello, I am using Kibana 7.10 and am trying to find a way to visualize the relationship that is between two tables of data I have.
Table 1 is similar to:
+-------------+-------------+------------+---------------+------------------------+
| X-Coord | Y-Coord | Owner | Date | Location ID |
+-------------+-------------+------------+----------------+------------------------+
| 2345.42 | 123.87 | Name 1 | 3/3/2022 | 975849372920 |
+-------------+-------------+------------+----------------+-------------------------+
| 128.87 | 6742.43 | Name 2 | 4/6/2019 | 647835423054 |
+------------+-------------+-------------+----------------+-------------------------+
| 123.87 | 2345.42 | Name 2 | 11/5/2018 | 589835423054 |
+------------+-------------+-------------+----------------+-------------------------+
Table 2 is similar to:
+---------------------------+-------------------+-----------------------+
| Note | Note ID | Location ID |
+---------------------------+-------------------+-----------------------+
| Location one is.... | 1233213232 | 975849372920 |
+--------------------------+--------------------+-----------------------+
| Location two is... | 5435436346 | 647835423054 |
+--------------------------+--------------------+-----------------------+
| Location two is... | 7198273543 | 647835423054 |
+--------------------------+--------------------+-----------------------+
| Location three is... | 2134558493 | 589835423054 |
+--------------------------+--------------------+-----------------------+
I am looking for a way to filter the first table on "Owner" and then the second table on my dashboard would filter down to only show the columns where "Location ID" was the same between the two tables.
For example if I was to filter where "Owner" was "Name 2" then in the second table only the columns with Location ID "647835423054" and "589835423054" present would show.