Is there any way to do this?
The structure my file has is something like the one below, but the file is large (around 5000 records in an 8MB xml file) and it has at least has one parent with many children that can vary from entry to entry (meaning that for some records, the number of children is not fixed and they use the same tag, like children of
MainCourseCategorieson the example below)
When I use Insert -> PivotTable -> Use an external data source -> Choose Connection... I get an error that says "The type of connection selected cannot be used to create a PivotTable"
<?xml version="1.0" ?>
<institutions>
<institution>
<TypeOfProvider>Provider Z</TypeOfProvider>
<MainCourseCategories>
<MainCourseCategory>Category 1</MainCourseCategory>
<MainCourseCategory>Category 2</MainCourseCategory>
<MainCourseCategory>Category 3</MainCourseCategory>
<MainCourseCategory>Category 4</MainCourseCategory>
</MainCourseCategories>
</institution>
<institution>
<TypeOfProvider>Provider A</TypeOfProvider>
<MainCourseCategories>
<MainCourseCategory>Category 1</MainCourseCategory>
<MainCourseCategory>Category 2</MainCourseCategory>
<MainCourseCategory>Category 7</MainCourseCategory>
</MainCourseCategories>
</institution>
</institutions>