If you could check the records from your datasource, that would help. Look
at the Name field, whatever unique identifier field you're using, and the
Reports To field for each record. You need to make sure that the top
person's Reports To field is blank, and that subordinates are referring to
their supervisor/manager correctly. It might help if you try the wizard with
just the top five records or so.
Usually, this is where the problem is, in my experience. Often, there will
be duplicate names and no ID field, or Reports To pointing to the name when
an ID field is used to identify unique records.
For example, here are some records from the Visio Database Samples database.
Name Title Reports To
Jossef Goldberg President & CEO
Suzan Fine Executive Assistant Jossef Goldberg
Laura Jennings CFO Jossef Goldberg
Clair Hector COO Jossef Goldberg
Notice that this database uses the Name field as the unique identifier, so
the Name values have to be unique, and the Reports To field contains the
full name.
You could also do it this way:
ID Name Title Reports To
1 Jossef Goldberg President & CEO
2 Suzan Fine Executive Assistant 1
3 Laura Jennings CFO 1
4 Clair Hector COO 1
If this works, then you've got a duplicate or corrupt record somewhere.
Steve