Re: Gallery items not showing on mobile
@CarlosCalleja
Very good.. Here is where I would start.
1) Sort is notoriously an issue on mobile depending on what it is sorting.
Try changing your formula to SortByColumns:
SortByColumns(
Filter(HorariosIniciales,
EstadoHI=Dropdown6.Selected.Value &&
MesHI=_selectedMonth &&
SolicitanteHI=_negocio2
),
"UbicacionHI"
)
(Also you will note a few other changes in your original formula in the one above. Firstly, avoid using SelectedText on dropdowns as it is a deprecated property. The above assumes that your Items property is Value based. If not, replace Value with the appropriate column from your Selected item)
2) Start to break apart your formula:
SortByColumns(
Filter(HorariosIniciales,
EstadoHI=Dropdown6.Selected.Value &&
SolicitanteHI=_negocio2
),
"UbicacionHI"
)
Note in the above, the MesHI column was removed from the formula. Try that, if no joy, put it back and take out one of the others.
With this process you are trying to narrow down if one of the values is impacting the problem - either the dropdown value, _selectedMonth, or _negocio2. If you find that removing one gives you items, then start working your way back from that. For example, _selectedMonth when removed shows items, then look to see where that is defined and how. Then start breaking that apart.