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 one of the following SQL query patterns: - to adjust the height of a column:
SELECT FORMATWIKI("{cell:height=100px}",T1.'Transaction_Amount',"{cell}")
AS 'Transaction_Amount', T1.'Service Agent' FROM T*
SQL
The height applied to at least one column applies to the entire table.
- to adjust the height of a row:
SELECT CASE WHEN T1.'Service Agent'= "Peter Jacobs" THEN FORMATWIKI("{cell:height=100px}",T1.'Service Agent',"{cell}")
END AS 'Service Agent', T1.'Transaction Type',T1.'Transaction Status' FROM T*
SQL
Pick at least one value in a row to adjust the cells height and add a conditional function such as IF, CASE WHEN, etc. paired with the FORMATWIKI function.