@Redits01
In English
Dear community, I need to make a count in my gallery of certain values according to a table field, that is, according to a criterion, count the amount of data that exists with that criterion and those that do NOT
I have two criteria: "Open" and "Closed" I need to count both of my gallery to know the quantities of each one.
Try a checkbox and count but when you exit the app the marked ones are erased, I need them to always remain on the screen and on various devices
Please note that this is an English language forum and you may get quicker responses posting in English, however I will help you here. If you want to count all items in a gallery, the formula is (replace with your gallery name)
Tenga en cuenta que este es un foro en inglés y puede obtener respuestas más rápidas publicando en inglés, sin embargo, lo ayudaré aquí. Si desea contar todos los elementos de una galería, la fórmula es (reemplazar con el nombre de su galería)
CountRows(YourGalleryName.AllItems)
If you want to could only the Open items (replace with your gallery and label names)
Si lo desea, solo puede abrir los elementos Abrir (reemplazar con su galería y nombres de etiquetas)
CountRows(
Filter(
YourGalleryName,
YourLabelName.Text = "Open"
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.