My team is using the table marco to list the programs but I can't see the dashboard while others can all see the dashboard be presented.
I only have this below msg which I don't know how to fix it.
Oops, it seems that you need to place a table or a macro generating a table within the Table Transformer macro.
Oops, it seems that you need to place a table or a macro generating a table within the Table Transformer macro.
Error: Table does not exist: T4
Error: Column does not exist: Summary
Hi Cheryl 👋
I am assuming that you are using '' Confluence – Table Transformer (Stiltsoft)'' app.
This error usually appears when the Table Transformer macro can’t find the input table or the columns it’s supposed to merge.
Let’s check the common causes step-by-step 👇
1. Verify macro nesting
Make sure the Table Transformer is properly wrapped around the tables or macros that generate the tables.
For example:
{table transformer}
{table 1}
...
{table 2}
...
{table transformer}
If the Transformer is empty or outside, it will show:
“Oops, it seems that you need to place a table or a macro generating a table...”
2. Check table references (Table IDs)
If you’re using Table Excerpt / Table Excerpt Include / Table Transformer with Table ID references, verify that:
Example:
SELECT T1.'Summary', T2.'Owner'
FROM T1 JOIN T2 ON T1.'ID' = T2.'ID'
If you see:
Error: Table does not exist: T4
It means you’re referencing a table alias that hasn’t been declared or included yet.
3. Check column names
The message:
Error: Column does not exist: Summary
means that one of the input tables doesn’t have a column named Summary — check for typos or renamed columns (sometimes “summary” vs “Summary” can break it, since the macro is case-sensitive).
4. Quick test
Try rebuilding a minimal version:
If this works, then the issue is with your table references or nested macros.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.