You need to PIVOT table data in Table Transformer.
Enter the following SQL query:
SELECT * FROM T1 PIVOT (MAX('Value') for 'Month') |
The aggregation function MAX is applied to an existing column Value. The Month column is the column the data are aggregated by. |
The same output can be produced with the Pivot Table macro with versatile functions like MAX, MIN, SUM, etc., specifically designed for easy and accessible table data aggregation. |