I have tables that represent menus in such a way that one menu contains another, but not the other way around.
i.e.
Menu_A
|-Menu_1
|-Menu_2
|-Menu_3
| :
Menu_B
|-Menu_1
|-Menu_2
|-Menu_4
| :
Menu_C
|-Menu_4
|-Menu_5
|-Menu_6
-----------------
| Menu_A | Menu_1|
------------------
| Menu_A | Menu_2|
------------------
| Menu_A | Menu_3|
------------------
| Menu_B | Menu_1|
------------------
| Menu_B | Menu_2|
------------------
:
Is there some way to transform this table into something looking like one below(eventually) maybe with the help of Excel if necessary?
----------------------------------------------------------------
| | Menu_1 | Menu_2 | Menu_3 | Menu_4 | Menu_5 | Menu_6 |
----------------------------------------------------------------
| Menu_A | ○ | ○ | ○ | × | × | × |
----------------------------------------------------------------
| Menu_B | ○ | ○ | × | ○ | × | × |
----------------------------------------------------------------
: