Forum Discussion
YvesDS
Jan 02, 2023Copper Contributor
distributing rows with filter() functions over multiple print pages
Hi all, I use the filter() function to succesfully fill a sort of invoice-like page with data. But depending on the amount of data, i would sometimes need the data to be spread over two or more pri...
- Jan 02, 2023
YvesDS Look into functions TAKE and DROP. The first lets you take the first n rows of an array. And DROP lets you remove the first n rows of an array.
It could look like this:
=TAKE(FILTER(......),40)
and
=DROP(FILTER(......),40)
Riny_van_Eekelen
Jan 02, 2023Platinum Contributor
YvesDS Look into functions TAKE and DROP. The first lets you take the first n rows of an array. And DROP lets you remove the first n rows of an array.
It could look like this:
=TAKE(FILTER(......),40)
and
=DROP(FILTER(......),40)