Closed
Description
Discussed in #682
Originally posted by alexisrc1 November 9, 2024
It would be amazing for data analysis if there was a way to freeze columns and/or rows,so when tables become big it is easy to navigate them.
If you can add 2 two top-level parameters so we can indicate the numbers of rows / columns to freeze, for instance:
select
'table' as component,
2 as freeze_columns -- for freezing the first 2 columns of the table,
1 as freeze_rows -- for freezing the top row of the table (the row with columns names)
;
select
1 as a,
2 as b;
select
3 as a,
4 as b;
Thanks 😉