Hi everyone.
I've been struggling for a while to automate a few pages in my Confluence space.
My use case is as following:
The help that I need is how to come up with a SQL query from the Table Transformer plugin that will allow to dynamically fetch the content from the Functions Masterlist based on a substring of Title page.
From my research I'd need to combine a regular expression (to fetch the content that is after the "2: " coming from the variable @pagetitle within the SQL query in the Table Transformer plugin.
My ultimate goal is to centrally manage the component functions while dynamically reflecting it in all pages.
Hi @Rafael Gilardino,
Hope this example will help your case:
SELECT *,
'Pagetitle'->split(": ")->1 AS 'Component name'
FROM
(SELECT *, @PAGETITLE as 'Pagetitle' FROM T*)
Then you will be able to use another Table Transformer macro and merge your master table with mini tables pulled from the specification pages by the 'Component name' column.
It worked brilliantly! Thanks very much for the prompt support @Katerina Rudkovskaya _Stiltsoft_
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.