Hi,
I want to condition a label to show information based on the dropdown selection that I have, but it has a trick.
If the dropbox is empty I need to show me the sum of all the items that I have in the Gallery, but if the dropbox is selected the label information only have to show the sum of the filtred information.
The formula that I have is this one:
If((Sum('Visitas para ventas';'Visitas realizadas')/Sum('Visitas para ventas';'Visitas programadas'))>=0.95;"Cumpliendo";If((Sum('Visitas para ventas';'Visitas realizadas')/Sum('Visitas para ventas';'Visitas programadas'))>=0.9;"A mejorar";If((Sum('Visitas para ventas';'Visitas realizadas')/Sum('Visitas para ventas';'Visitas programadas'))<0.9;"Incumpliendo")))
This works but only to sum all the items, I´m struggling to add a condition for a sum of the selected option in the dropdown.
The data is conected by a sharepoint list.
Thanks