I am trying to create a template where I have the following 3 table:
- BookDB
- ChapterDB
- SectionDB
In SectionDB I have 3 columns: Name, Status (of type Status), Chapter (related to Name column of ChapterDB).
In ChapterDB I have 3 columns: Name, Book (related to Name column of BookDB), Sections (related to Name column of SectionDB)
In BookDB I have 3 columns: Name, Chapters (related to Name column of ChapterDB), Status (which must get the status/progress from the Status column of ChapterDB)
Now I can create a column by the name: Status (of type Rollup) in ChapterDB, which can then present the progress of a chapter based on the combined value of Status column for all the sections of a Chapter (related column in SectionDB) of SectionDB. So, this is one-level relation and is achievable.
Question: What I want, is to use this Status (in ChapterDB) to present status/progress of the Book in BookDB. How can it be done?