I have a table that looks like this:
id country region level
1 England uk 1
2 Wales uk 3
3 Ireland uk 1
4 Italy seu 2
5 France neu 1
6 Belgium neu 3
(those are just some made sample data, but that is the way, the correct data are stored. Exactly 3 levels, but with 6 different regions)
I'd like to represent that in a form with cells, with a cell for each combination of region and level:
1 2 3
uk C1 C2 C3
seu C4 C5 C6
neu C7 C8 C9
So in cell 1 (C1) I like to list the countries in uk with level 1 and like that with all the other cells to. I can do that with a pivottable, but as I see it, formatting such a table is extremely limited, and it's going to be a part of a nicely formatted form 'application'. Is there any way to produce some sort of query (crosstab, maybe) or the like that I could use to tackle this problem?
id country region level
1 England uk 1
2 Wales uk 3
3 Ireland uk 1
4 Italy seu 2
5 France neu 1
6 Belgium neu 3
(those are just some made sample data, but that is the way, the correct data are stored. Exactly 3 levels, but with 6 different regions)
I'd like to represent that in a form with cells, with a cell for each combination of region and level:
1 2 3
uk C1 C2 C3
seu C4 C5 C6
neu C7 C8 C9
So in cell 1 (C1) I like to list the countries in uk with level 1 and like that with all the other cells to. I can do that with a pivottable, but as I see it, formatting such a table is extremely limited, and it's going to be a part of a nicely formatted form 'application'. Is there any way to produce some sort of query (crosstab, maybe) or the like that I could use to tackle this problem?