Hello,
basically I have a topic which is divided into several subtopics. Each subtopic has the same data fields (e.g. link, read time, working time, task done). I would expect to have an ordinary table looking like this:
Subtopic 1:
Link | Read Time (min) | Working Time (min) | Task Done |
---|---|---|---|
www.example.com | 1 | 3 | TRUE |
And the same for a subtopic which has more data (n):
Subtopic 2:
Link | Read Time (min) | Working Time (min) | Task Done |
---|---|---|---|
www.example.com | 1 | 3 | TRUE |
ask.libreoffice.org |
10 | 30 | FALSE |
Here, I would name the tables “Subtopic 1” and “Subtopic 2”. Now I need a way to group together those subtopics to their main topic. I would add e.g. “Subtopic 1” directly into the table but I don’t know how to handle a Subtopic needing two or more rows (because it has more than one link, read time…). So maybe I’ll just create a table containing all subtopics like this:
Main Topic |
---|
Subtopic 1 |
Subtopic 2 |
But if I do that I’d need a way to tell my forms which Subtopic belongs to which main topic and I also don’t know how to do that.
The aim is to have a report that groups the subtopics to their corresponding main topic. Every subtopic should show the data fields (link, task done…).
In a .odt file I had something like this:
1.1 Main Topic:
Subtopic | Link | Read Time (min) | Working Time (min) | Task Done |
---|---|---|---|---|
Subtopic 1 | www.example.com | 3 | 9 | TRUE |
Subtopic 2 | ask.libreoffice.org | 30 | 50 | FALSE |
help.libreoffice.org | 15 | 44 | FALSE |
(Below, there’s also “1.2 Another Main Topic”…).
I’d like to have that but using base and databases because they give me more flexibility (using queries I can easily decide what I’ll see in my report).
I hope you understand what I’m trying to say and that you can direct me in the right direction.
Thank you in advance!