
Estimada comunidad, necesito realizar un conteo en mi galería de ciertos valores según un campo de tabla, es decir segun un criterio contar la cantidad de datos que existan con ese criterio y los que NO
tengo dos criterio: "Abierta" y "Cerrada" necesito contar ambas de mi galería para saber las cantidades de cada una.
Probe con un checkbox y realiza el conteo pero al salir de la app se borra los marcados, necesito que permanezcan siempre en pantalla y en varios dispositivos
Saludos
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 devicesPlease 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.