Hi,
I have a dropdown with information of a sharepoint list, de column of information is "Choice", so I conect the data to de dropdown with this formula:
Choices('Visitas para ventas'.'Canal Comercial')
So I have a gallery and a graphic that I need to see the information if I chose any option of the dropdown, I conect that with this formula:
Gallery
If(Dropdown1.Selected.Value = None ;'Visitas para ventas';SortByColumns(Filter('Visitas para ventas';'Canal Comercial'.Value = Dropdown1.Selected.Value);"{FilenameWithExtension}";Ascending))
Graphic
AddColumns(Filter('Visitas para ventas';'Canal Comercial'.Value = Dropdown1.Selected.Value);"Canal C";('Visitas realizadas'/'Visitas programadas'))
The problem is that I want to see all the records in the gallery and graphic if i don´t select nothing in the dropdown, Is there any code that I can use to do this.