How many checked items does a list have?

Hello Community, I need to be able to count the number of checked elements that an enumlist has.

Does anyone know how it can be done?

Suppose I have a column called elements

[Items] of type enumlist

Element 1 Check False

Item 2 Check True

Item 3 Check true

I want a formula that counts how many elements are checked.

something like a

Count(Select([Elements] ,Check=true) but I know there is no check

Greetings, thank you for your answers.

Hello @Gustavo_Eduardo you can use COUNT() like this:

COUNT([Elements])

2 Likes

Ok Rafael! Pruebo y te comento, gracias por tu rapida respuesta

2 Likes

Rafael, muchas gracias. Estaba usando mal la fórmula. Tu respuesta funcionó perfectamente. Agradezco mucho tu velocidad de respuesta. Que tengas muy buen día!

1 Like