I have several tables which are part of table excerpts, each table has a auto numbered column.
I am using a table transform to merge all these tables into one table on a different page.
I want to hide the original numbered column in the individual tables (see the image below) and create a new numbered column that is continuous across the rows across all the tables.
Any help will be much appreciated.
Hi @Ajay.Amrite,
I assume that you have smth like this coming from your Table Excerpts:
So, you may use the ROWNUM() function in your Table Transformer macro:
SELECT ROWNUM() AS 'No',
*
FROM T*
Hope it helps your case.
Hi @Ajay.Amrite ,
To achieve an auto-numbered column in a table transform in Confluence, you can follow these steps:
Once you have completed these steps for all the tables, you will have a merged table with a continuous auto-numbered column.
/Markus
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Markus,
I don't want to move my data from the other tables to one table.
I am looking for a way to use a combination of 'table excerpt include' and 'table transformer'.
Currently I am using the SQL
SELECT * FROM T*
Regards,
Ajay.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.