Table Filter, Charts & Spreadsheets for Confluence Table Transformer Custom Transformation - use cases with advanced SQL queries Data searching, filtration, and formatting with SQL Current: Extracting values from specified HTML tags PDF Download PDF Download page Extracting values from specified HTML tags. Current page All pages Extracting values from specified HTML tags Use caseYou have a table containing HTML content. You need to extract values from specified HTML tags. For example, "h3" headers from the 'Issue' column (the first match) and bold text (the "strong" tag) from the 'Comment' column (all matches).SolutionSwitch the page to the edit mode.Insert the Table Transformer macro and paste the table or the macros outputting tables within the macro body.Select the macro and click Edit.In the Presets tab select Custom transformation and click Next.Enter the following SQL query: SELECT *, FIND_VIEW(T1.'Issue', "h3") AS 'Issue HTML', FIND_VIEW(T1.'Comment', "strong", true) AS 'Comment HTML' FROM T1 SQL Save the macro and the page. ×