PS
I have a menu structure with ID/ParentID in an excel spreadsheet. I would like to create a simple hierarchical chart from this data.
Is there an easy way to import this structure and get a chart?
I can export it to CSV or tab delimited as needed. The data basically looks like
ID Description ParentID
0 Root -1
1 Level1A 0
2 Level1B 0
3 Level2A 1
4 Level2B 1
5 Level2C 2
Paul