I have a bunch of child pages each of which have a table in them. I have a parent summary page which gives the number of rows in the tables of each of the child pages. Currently, this is a static table with hardcoded numbers. Is there a way to make this dynamic (like an excel formula link)?
Example:
Child Page 1 (Table Format)
1. Column1 Column2 Column3
2. Column1 Column2 Column3
Child Page 2 (Table Format)
1. Column1 Column2 Column3
2. Column1 Column2 Column3
3. Column1 Column2 Column3
4. Column1 Column2 Column3
Parent Summary Page (Table Format)
Sl. No. C hild Page Row Count
1. Child Page 1 2
2. Child Page 2 4
Hello,
Starting from version 5.0.0, the Table Filter and Charts app provides the abilities to multi-excerpt tables from any pages (current page, specific page, child pages, pages by labels) with the help of the Table Excerpt Include macro and to transform and combine excerpted tables in one master table with the help of the Table Transformer macro.
The steps to resolve your use case may be as follows:
1. Insert the Table Excerpt macro, set the Excerpt name parameter, and place the tables (or the macros outputting tables) within the macro body on every page.
2. Add the Table Excerpt Include macro on the summary page, specify Excerpt name and select an appropriate Excerpt source. Do this separately for every page and table for which you want to count rows.
3. Wrap every Table Excerpt Include macro in the Table Transformer macro. Edit the Table Transformer macro, select the SQL query tab and use the following query to output the table containing the page name and the number of rows in the table for every page:
SELECT "Page A" AS 'Page', COUNT (*) AS 'Number of rows' FROM T*
4. Wrap all the Table Transformer macros in one Table Transformer macro and use the default preset to merge all the tables in one.
Hi @ganesh n
You just want to report the number of rows in your tables and not the contents? I wouldn't mind seeing an example of your parent summary page.
- Jon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jonathan Smith That's correct. I want the number of rows in the child pages on the parent page. I have updated the question with an example.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.