Limit number of cards in a given column of a board

I got a Board with tasks (cards) grouped by Status.
I filter them, here is the filter rule:

image

I need to set a limit for a To-Do column to show only first X cards.

Is there a way to do this?

Hi is possible :slight_smile:

cold like this I would have done like this

add column formula :
myTable.Filter([status] == thisRow.[status]).Find(thisRow)

this will give a number that increments according to the same status.
it remains to filter for example ColumFormula < 15