Selection limit - EnumList Hi everyone, I ...

Selection limit - EnumList

Hi everyone,

I made EnumList with 15 values. It is posibility to limit selection to 4 values?

Thanks & Regards!!

0 1 1,016
1 REPLY 1

Harry2
New Member

+Maciej GEO Hi Maciej, you can use the Valid_If constraint of the column to check the number of elements in the list:

COUNT([_THIS]) <= 4

โ€œ[_THIS]โ€ refers to the current value in the column, which is the list of selected enum values. The COUNT() expressions calculates the number of elements in the list. If the number of selected enum elements exceeds 4, the column becomes invalid.

Top Labels in this Space